Sub Page_Load(Sender as Object, e as EventArgs)
Dim firstemail as string
firstemail = Request.Form("email")
Response.Redirect("http://server/upload/upload1.aspx?ID=("firstemail")")
end sub
How is the syntax to dynamically append to Response.Redirect query string ? Thanks in advance
teenwolf
Member
60 Points
12 Posts
dynamically add to querystring
Aug 01, 2003 06:59 PM|LINK
Sub Page_Load(Sender as Object, e as EventArgs) Dim firstemail as string firstemail = Request.Form("email") Response.Redirect("http://server/upload/upload1.aspx?ID=("firstemail")") end subHow is the syntax to dynamically append to Response.Redirect query string ? Thanks in advanceaka
Participant
825 Points
165 Posts
Re: dynamically add to querystring
Aug 01, 2003 07:26 PM|LINK
teenwolf
Member
60 Points
12 Posts
Re: dynamically add to querystring
Aug 01, 2003 07:37 PM|LINK