Does ASP:Textbox TextMode Securely Enforce Input Validation?
Posted by James Jardine on December 11, 2023 · Comments Off on Does ASP:Textbox TextMode Securely Enforce Input Validation?
Filed under: Development, Security
Filed under: Development, Security
When building .Net Webform applications, the ASP:Textbox has a TextMode property that you can set. For example, you could indicate that the text should be a number by setting the property below: <asp:TextBox ID="txtNumber" runat="server" TextMode="Number" /> As you can see in the above example, we are specifically setting the TextMode attribute to Number. You can see ...