3
Hello Oliver.
For dot net 4.8 or MVC, you can use model-based form biding to connect with the server.
Check below sample code example:
@Html.EditorFor(model => model.PropertyName, new { htmlAttributes = new { @class = "form-control" } })
Thanks
Vishal Joshi
3
Yes, if you are using web form and server control, then it is.
Example:
<asp:TextBoxID="Text_Box" runat="server" ></asp:TextBox>
2
Hello oliver duCille,
Please refer this one to create server control,
If you want to create
1. TextBox
<asp:textbox id="txtName" runat="server" > </asp:textbox>
2. Button
<asp:button id="btnSubmit" runat="server" > </asp:button>
3. Label
<asp:label id="lblMessage" runat="server" </asp:label>