fletchsod
Programmer
- Dec 16, 2002
- 181
I have been learning how to use ASP.NET for 2 years now since I'm so accustom to doing html and php for many years. Here is one part I don't get in ASP.NET. How do you pass on the Request.QueryString("foo") to the html hidden textbox?
--snip--
<INPUT type="hidden" name="htmlVIN" value="<%=Request.QueryString("VIN")%>">
--snip--
Visual Studio won't let me do it this way, so how do you accomplish this? I have a window opener that pass this foo variable from the parent window to this window opener where the request.querystring("foo") pass on the data to the html hidden variable. So, when a submit button is clicked, this data from the hidden variable is then passed on to the next webpage.
Thanks...
FletchSOD
--snip--
<INPUT type="hidden" name="htmlVIN" value="<%=Request.QueryString("VIN")%>">
--snip--
Visual Studio won't let me do it this way, so how do you accomplish this? I have a window opener that pass this foo variable from the parent window to this window opener where the request.querystring("foo") pass on the data to the html hidden variable. So, when a submit button is clicked, this data from the hidden variable is then passed on to the next webpage.
Thanks...
FletchSOD