|
|
Question : querystring truncates text
|
|
Hi!
I am writing a form to a db and I pass the data to the process page through the querystring but the description for the product can get quite lengthy and when it passes a certain length it seems to truncate the description string.
Can anyone tell me if there is an overall length when passing data via the querystring in either an individual field or in total?
thanks!
chrism
|
Answer : querystring truncates text
|
|
IE4 & above can do up to 2048. Netscape 6 is somewhere around 9000 characters.
A far better way is to use the POST method to send the info - it's just as easy to retrieve and is unlimited.
|
|
|
|