Forums
New posts
Search forums
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
C# Community
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
ASP.NET
ASP.NET General Discussion
Webform to webform transfer when loading
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="tiffany, post: 13132, member: 3711"] From Schenz's Post: I would strongly recommend you avoid using session variables. They are easy, and work wonders, but they can get out of hand and use server resources. Look into Request variables. Setting a request variable: Code: [left] Dim ParamString As String ParamString = "LastName=" & txtLastName.Text ParamString += "&FirstName=" & txtFirstName.Text Response.Redirect("CustomerList.aspx?lookup=name&" & ParamString) [/left] Using a request variable: Code: [left] txtLastName.Text = Request.Params.Item("LastName") txtFirstName.Text = Request.Params.Item("FirstName") [/left] Hi Schenz, regarding from the reply post. I would like to ask you for help. For the "setting request variable", i had try the codes for checkboxes and do the same for "using a request variable". But how to retrieve more then one values in checkboxes and display in another page? Thank you! [/QUOTE]
Insert quotes…
Verification
Post reply
ASP.NET
ASP.NET General Discussion
Webform to webform transfer when loading
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
Accept
Learn more…
Top
Bottom