Problems passing data from ASP to Webspeed

rdekker

New Member
When I sent data to Webspeed via a querystring from ASP for instance:

objAgent.QueryString = "polisnummer=bla&kenteken=" & UCase(Request("kenteken"))

I experience the following problem: when I post a html form-field called kenteken with the value "12-ab-LF", my value in webspeed should be "12-AB-LF" because of the UCase function I use in the querystring.

This is not the case. When I write the querystring to the screen it holds "12-AB-LF" but in webspeed it still is "12-ab-LF", so it seems to me that webspeed code actually gets its data directly from the submitted form. Is this possible and how can I prevent this from happening? My webspeed-code should always get its data from the querystring I sent to it.
 

escript

New Member
If you are originally POSTing the form then the value of kenteken and the other form fields will be in the body of the request rather than on the QueryString, I think this is why you are getting the original value rather than your modified one.
 
Top