Click here to Skip to main content
15,895,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i put the username and password in header.both username and password textbox are html text.how i call the values to nextpage.normally i know the vtextbox control are called by textboxid.text but...

textbox1.text=;
it is the normal,
the sameway how i put in html text box

From JSOP==================

Your title was too long so I put it into the question itself, and then guessed at what you're trying to ask, and changed the title accordingly.
Posted
Updated 26-May-10 3:38am
v2
Comments
R. Giskard Reventlov 26-May-10 9:27am    
I'm guessing that English is not your first language. Even so your question is quite difficult to decipher. Try shortening the subject and rewrite the question (carefully). Do you have a friend that speaks better English? Perhaps they could translate the question for you.

1 solution

To get the value of a HTML textbox at server side you can use Request.Form[“TextBoxName”] or you can provide a id to the textbox and set the runat=”server” in this case you can get the value of textbox like txtUserName.Value

To pass the values between the pages you can check following link.

http://msdn.microsoft.com/en-us/library/6c3yckfw.aspx[^]
 
Share this answer
 
Comments
mehalanandu 7-Jun-10 3:16am    
thank u...
PSK_ 7-Jun-10 4:12am    
If you found the answers then you can close your questions.

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