I get a querrystring variable called x which equels 1 and
would like to change the value to 2.
response.redirect("yourwebpage.aspx?x=" & someValue)
or, if you know what you want to retreive after a post, do on your form:
<form method="post" action="myself.aspx?x=<%=someValue%>">
anyway, the point is that querystrings is just like posts, but you can set
them directly in the URL.
If this won't help, please post what are you trying to do!
Sherlock
>.
>
In your default.aspx, do Request.QueryString("value1") (Page_Load)
For example: Dim qs1 = Request.QueryString("value1")
Then, you Response.Redirect("main.aspx?value2=" & qs1)
Hope this help. If this what you mean.
"steve" <stle...@hotmail.com> wrote in message
news:4d7501c20042$a8df6750$37ef2ecf@TKMSFTNGXA13...
This posting is provided "AS IS", with no warranties, and confers no
rights. Enjoyed ASP.NET? http://www.asp.net