Date:  01/30/2007 01:06:48 PM Msg ID:  003280
From:  FoxWeb Support Thread:  003280
Subject:  Encrypted data in a query string
Could you please help me with this problem. I am using FoxWeb 1.29a. I include encrypted data (user name) into a query string. Everything works fine with one exception - whenever the character ÿ (chr(255)) is included into user_name field FoxWeb splits its value in two parts. For example if encrypted field user_name = "aaaaaÿbbbbb" then cgifields array will hold such values:
 
cgifields[1,1] = "user_name"
cgifields[1,2] = "aaaaa"
cgifields[2,1] = "bbbbb"
cgifields[2,2] = ""
 
Can it be overcome?
Thank you.