Response.Redirect problem
Respons.Rediect can move the value ?
I want the when page move by Response.Redirect it also move the stn_no value.
How can move stn_no by Response.Redirect ? from second form to third form ?
Checksoftware.asp (second form)
-------------------------------
stn_no=Request.Form("stn_no")
Response.Redirect("Addnew_Soft.asp?stn_no=stn_no") // here is problem
Addnew_Soft.asp (third form)
-------------------------
stn_no=Request.QueryString("stn_no")
stn_no=Request.Form("stn_no")
Response.Write(stn_no)
How can received stn_no value in Addnew_Soft.asp ?
Mateen
|