Saturday, September 24, 2011

How to Validate Number With Validation Control

Validate number, Validate Number with asp.net validation control, Validate numaric value <asp:RegularExpressionValidator ID="RegularExpressionValidator1" ControlToValidate="txtBids" Display="Dynamic" ValidationExpression="^\d+$" ValidationGroup="step1" runat="server"  ErrorMessage="*">

Bid Should Be A Number

</asp:RegularExpressionValidator>

No comments:

SQL Optimization

  SQL Optimization  1. Add where on your query  2. If you remove some data after the data return then remove the remove condition in the sel...