Erm i am new to this. How do i pass the value the user enters into a text box to the vb code behind?
<input type="text" runat="server" id="amount" name="amount" size="15" />
|
|
|
Use the ASP.NET-TextBox Control.
Then you can access it from codebehind via it's ID
The Text will automatically persisted in ViewState across postbacks by default. |
|||
|
|
|
No need to pass the value As its Example
or you can make use of Request collection to get the value of the textbox |
|||||
|
|