I have a
VB client app and a classic ASP page.
The app sends a very long string in the query string to the asp page.
[code]http://www.xyz.com/clientresp.asp?clp=sfhsdahfaffasfasafasfffasffafas fsf....[code]
When I read the query string value like in asp:
strVal = request("clp")
response.write(strVal)
I get nothing. I even tried writing the strVal to a text file with no success. I am positive my query string value is too long. There was a registry hack to make the IIS accept longer query string values. Any help is appreciated.
Thanks