Main menu:

 

July 2008
M T W T F S S
« Jun   Aug »
 123456
78910111213
14151617181920
21222324252627
28293031  

Site search

Archives

Categories

Tags

Links:

Archive for July 3rd, 2008

Getting the value of asp.net control using Request.Form

you have an asp textbox with the id as txtBox and the button as btnSubmit ,
now you enter the text as “Sample” in the textbox, on click of submit, in order to get  the value of the textbox .
you need to put the name in the Request.Form, like Request.Form["txtBox"], now if you have a master [...]