C# Validation control
Is it possible to use asp:RequiredFieldValidator
and asp:RegularExpressionValidator
开发者_如何学运维for a single textbox.
yes. Just put them both on your page and set their controlToValidate to the same control
Yes you can, just bind both to the same TextBox/whatever control you want to validate.
精彩评论