Click here to Skip to main content
16,008,175 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
in visual studio 2005 .net c# the data given in the textbox of first webpage has to be thrown in textbox of forthcoming webpages as default and should run in a web server of my website
Posted
Comments
OriginalGriff 16-Oct-12 3:35am    
This is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind.
Use the "Improve question" widget to edit your question and provide better information.

1 solution

IN WEBSITE
To use session
In first Webpage:
Session["as"]=Textbox1.text.ToString();

In second Webpage:
string a;
a=Session["as"].ToString();
Textbox1.text=a;
 
Share this answer
 
Comments
lavanya19 17-Oct-12 11:05am    
@sarath...thank u

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900