Ask a Question related to ASP.NET General, Design and Development.
-
Anne #1
Passing multiple values using Response.Redirect
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, ByVal
e 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, ByVal
e 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.
Anne Guest
-
Passing multiple session values from cold fusion into aflash movie
Hello all, I know that to pass multiple variables into a flash movie you could use the embed tag like this(with the & between each variable): ... -
Response.Flush / Response.Redirect
Hi, I've had a good google and can't find anything already on this so : I'm currently trying to have a 'Page Loading' page on a site. The way... -
passing variable with response.redirect
I'm trying to retain a value that I pass to a processing page. When the page is done processing, I use the response.redirect to forward to the page... -
Passing multiple values accross a hyperlink ?
Hi, I have a link as follows: <A HREF=""Tracker.asp?MovementID=" & RS("MovementID") & " PONumber=" & RS("PONumber") & """>" & RS("MovementID")... -
Redirect to New Browser Window like Response.Redirect
That worked just fine for me as long as you put that open statement on one line rather than 2. "michel" <michely3k@yahoo.com> wrote in... -
Natty Gur #2
Re: Passing multiple values using Response.Redirect
Hi,
You can use Server.Transfer("InputValues.aspx",true) to call the
InputValues.aspx page with the Form and QueryString data.
You can also take advantage of Context while using
Server.Transfer("InputValues.aspx") and send any data that you want via
Context.Items
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
Anne #3
Re: Passing multiple values using Response.Redirect
hie natty. thanx 4 your reply. i've tried using your
method, but i still do not get the output i wanted, that
is how do i pass multiple parameters to the next page.
Thanx!
call the>-----Original Message-----
>Hi,
>
>You can use Server.Transfer("InputValues.aspx",true) tothat you want via>InputValues.aspx page with the Form and QueryString data.
>
>You can also take advantage of Context while using
>Server.Transfer("InputValues.aspx") and send any data***>Context.Items
>
>Natty Gur, CTO
>Dao2Com Ltd.
>28th Baruch Hirsch st. Bnei-Brak
>Israel , 51114
>
>Phone Numbers:
>Office: +972-(0)3-5786668
>Fax: +972-(0)3-5703475
>Mobile: +972-(0)58-888377
>
>Know the overall picture
>
>
>*** Sent via Developersdex [url]http://www.developersdex.com[/url]>Don't just participate in USENET...get rewarded for it!
>.
>Anne Guest
-
Natty Gur #4
Re: Passing multiple values using Response.Redirect
Hi,
The calling page :
Context.Items.Add("DataA","yourData");
Context.Items.Add("ObjectData",System.DateTime.Now );
the target page :
string StringData = (string)Context["DataA"];
System.DateTime oDateTime = (System.DateTime)Context["ObjectData"]
Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114
Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377
Know the overall picture
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
makthar #5
Passing multiple values using Response.Redirect
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.ByVal>-----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,ByVal>e 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,>e 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.
>
>.
>makthar Guest
-
David Waz... #6
Re: Passing multiple values using Response.Redirect
Do you HAVE to use the 2nd page. Sometimes it's best to do the processing
in a single page...
Assuming you have to do it that way,
why not use Session to transfer the data. Just clean up after yourself on
the 2nd page by removing the values after you extract the values.
"Natty Gur" <natty@dao2com.com> wrote in message
news:eOKb3vDRDHA.3700@tk2msftngp13.phx.gbl...> Hi,
>
> You can use Server.Transfer("InputValues.aspx",true) to call the
> InputValues.aspx page with the Form and QueryString data.
>
> You can also take advantage of Context while using
> Server.Transfer("InputValues.aspx") and send any data that you want via
> Context.Items
>
> Natty Gur, CTO
> Dao2Com Ltd.
> 28th Baruch Hirsch st. Bnei-Brak
> Israel , 51114
>
> Phone Numbers:
> Office: +972-(0)3-5786668
> Fax: +972-(0)3-5703475
> Mobile: +972-(0)58-888377
>
> Know the overall picture
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
>
David Waz... Guest
-
Anne #7
Passing multiple values using Response.Redirect
hie makthar! thanx a lot 4 your help. it solved my prob! :)
&>-----Original Message-----
>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=">ByVal>> txtRequestor.Text & " Lower= " & txtLower.Text)
>>End Sub
>>
>>'second page
>>Private Sub Page_Load(ByVal sender As System.Object,>ByVal>>e 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,>.>>e 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.
>>
>>.
>>
>Anne Guest
-
Anne #8
Re: Passing multiple values using Response.Redirect
thanx david 4 your suggestion. appreciate it very much.
do the processing>-----Original Message-----
>Do you HAVE to use the 2nd page. Sometimes it's best toafter yourself on>in a single page...
>
>Assuming you have to do it that way,
>why not use Session to transfer the data. Just clean upvalues.>the 2nd page by removing the values after you extract thecall the>
>
>
>
>"Natty Gur" <natty@dao2com.com> wrote in message
>news:eOKb3vDRDHA.3700@tk2msftngp13.phx.gbl...>> Hi,
>>
>> You can use Server.Transfer("InputValues.aspx",true) todata.>> InputValues.aspx page with the Form and QueryStringthat you want via>>
>> You can also take advantage of Context while using
>> Server.Transfer("InputValues.aspx") and send any data***>> Context.Items
>>
>> Natty Gur, CTO
>> Dao2Com Ltd.
>> 28th Baruch Hirsch st. Bnei-Brak
>> Israel , 51114
>>
>> Phone Numbers:
>> Office: +972-(0)3-5786668
>> Fax: +972-(0)3-5703475
>> Mobile: +972-(0)58-888377
>>
>> Know the overall picture
>>
>>
>> *** Sent via Developersdex [url]http://www.developersdex.com[/url]>>> Don't just participate in USENET...get rewarded for it!
>>
>
>.
>Anne Guest



Reply With Quote

