I am creating a form in ASP.NET to send email. So far, everything is working fine, and I can transfer the contents of ASP: TextBox to e-mail without any problems. Right now, as I did things, it is put as static text as a TB label, and then do it with the TB control for input.
Should I use an ASP: Label control?
Code example:
<div> Pub Contact Phone: <asp:TextBox ID="PublicationContactPhone" runat="server" TabIndex="9"></asp:TextBox> </div>
Is there a best practice that says that all texts not in the text are shortcuts or preferred?
source share