The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Server.Transfer : Passing values from one page to another page
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

anand swaminathanPosted Aug 12, 2010, 2:24 PM
i have create a two input boxes for username and password. i need to store the username and pass the username to another form in ms access
Rudy WelvaerteditedPosted Aug 10, 2007, 4:55 AMEdited Sep 21, 2007, 5:13 AM
Dear Sanjay Kumar thanks for your article, it really helped me along on my project. I do have some remarks: Step 1 to create a global instance variable Public Shared frmSource As Form1 Step 2 to get the source page from the Context.Handler frmSource = CType(HttpContext.Current.Handler, SolutionName.Form1) Step 3 to get property values lblFName.InnerText = SolutionName.Form1.frmSource.FirstName
aisha dawoodPosted Apr 24, 2007, 5:19 AM
hello. i have a question. we have a web service using SOAP protocol and RPC messaging to transfer data from a server to our back end system. the events transfer was running successfully but now has stopped what could be the possible reasons for this and what are the major and minor things i need to check. kindly assist me in this mail id is [email protected] aisha
Jerry MillikenPosted Mar 27, 2007, 7:59 PM
My question is? How do I take information from one web based form and have the info transferred to another web based form? This is my situation, I use two different web based programs in my job. All of the data entry used in one program can take up to 40 minuets to input, then I have to enter the same information in a totally different web based program on another site. Do you know of a program I could use or is it possible to make a web based form myself that will transfer the information to both of the web based forms I use. I am confident that I could make a web form and database to take the data I need to input and then transfer the data in to two separate output forms that would match the two different programs I use. I just do not know how to transfer that data with out cutting and pasting for an hour each time. Any suggestions,
nikshuklaPosted Feb 22, 2007, 11:49 AM
You can also get values using Request.Form("txtAdd2") when you use Server.Transfer("Form2.aspx",true).