First method:
If you are using the request.querystring use "&" between
the values
Response.Redirect("InputValues.aspx?Requestor=" &
txtRequestor.Text & "&Lower= " & txtLower.Text)
InputValues.aspx page retrieve the values:
strRequestor = Request.QueryString("Requestor")
Response.Write("Requestor = " & strRequestor)
strLower = Request.QueryString("Lower")
Response.Write("Lower = " & strLower)
Second Method:
Use session Variables if you don't want to display these
values in the header
on page 1
session("Requestor")=txtRequestor.Text
Session("Lower")=txtlower.text
response.redirect("InputValues.aspx")
In the InputValues.aspx page
strRequestor=session("Requestor")
strLower=Session("Lower")
Session("Requestor")=nothing
Session("Lower")=nothing
Hope that helps.
-----Original Message-----
hie there, i want to be able to pass multiple parameters
to another page. currently, i am able to do so, but
somehow i feel it is not the correct way to do it. below
is part of what i have so far.
'first page
Private Sub btnOK_ServerClick(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
btnOK.Click
Response.Redirect("InputValues.aspx?Requestor=" &
txtRequestor.Text & " Lower= " & txtLower.Text)
End Sub
'second page
Private Sub Page_Load(ByVal sender As System.Object,
ByVale As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Dim strRequestor As String
strRequestor = Request.QueryString("Requestor")
Response.Write("Requestor = " & strRequestor)
End Sub
the output i will get is :
Requestor = * Lower = 10
My question is, how can i pass the 2nd parameter(in the
txtLower.Text) to the next page without passing the
keyword "Lower" and still obtain the same output?
i want my second page to look like this:
Private Sub Page_Load(ByVal sender As System.Object,
ByVale As System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Dim strRequestor As String
Dim strLower As String
strRequestor = Request.QueryString("Requestor")
Response.Write("Requestor = " & strRequestor)
Response.Write("<br>")
strLower = Request.QueryString("Lower")
Response.Write(strLower)
End Sub
Please help, and thanx in advance.
.