Can I save values from the multi same form? How?
Sample:
on this form - one datagridview, one textbox, one combobox.
Thanks.
Sample:
on this form - one datagridview, one textbox, one combobox.
Thanks.
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server" />
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Text="First Option" Value="1" />
<asp:ListItem Text="Second Option" Value="2" />
</asp:DropDownList>
<asp:Button ID="Button1" runat="server" Text="Submit" />
</div>
</form>
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim TextBoxValueToSave As String = TextBox1.Text
Dim DropDownListValueToSave As String = DropDownList1.SelectedItem.Value
End Sub
Comment