I have seeen a similar question with similar title here:
[Solved] ASP.Net Error: Page.IsValid cannot be called before validation has taken place
I tried to adapt it to suit my need but unfortunately, it didn't work for me because there are differences between this solution and mine.
First, I was fortunate and quite grateful to have gotten assistance from Dharmendra on the link below:
Validate Password using Regular Expressions for First last and date of Birth
Our requirement is user enters ID, ID must meet certain criteria and then passes validation requirements.
We used RegularExpressionValidator property to accomplish this, thanks once again to Dharmendra for this.
We are running into one minor issue. Because our form uses OnTextChanged event handler to verify if that userID already exists on our DB, then the validation message -> Format is wrong, must be in the format of AD01011900" simply flashes on the screen for just one second and disappears given the users the impression that validation does not work. It does work after completing the entire form and clicking submit.
The reason the validation message flashes and disappears is the txtUserID control uses OnTextChanged event to check if 'userID against our DB to see if that userID already exists on our DB.
I added CausesValidation="true" the txtUserid control.and then add Page.IsValid to the OnTextChanged event handler then I get the following error:
Page.IsValid cannot be called before validation has taken place. It should be queried in the event handler for a control that has CausesValidation=True and initiated the postback, or after a call to Page.Validate.
<asp:RegularExpressionValidator Style="font-size: medium;" SetFocusOnError="true" ID="RegularExpressionValidator2" runat="server"
ControlToValidate="txtEmpID" ErrorMessage="A minimum of 5 digits is required" ForeColor="Red"
ValidationExpression="^.{5,11}$" EnableClientScript="true">A minimum of 5 digits is required</asp:RegularExpressionValidator>
<br />
<asp:TextBox ID="txtUserID" runat="server" AutoPostBack="true" OnTextChanged="txtUserid_Changed" />
<asp:RegularExpressionValidator ID="RegularExpressionValidator3" runat="server"
ControlToValidate="txtUserID" SetFocusOnError="true" Display="Dynamic"
ErrorMessage="Format is wrong, must be in the format of AD01011900"
ForeColor="Red" ValidationExpression="^[zA-Z]{2}((0[1-9]|1[0-2])((0|1)[0-9]|2[0-9]|3[0-1])((19|20)\d\d))$"></asp:RegularExpressionValidator>
Protected Sub txtUserid_Changed_TextChanged(sender As Object, e As EventArgs) Handles txtUserid.TextChanged
If Page.IsValid Then
'Process stuff
...
...
End If
When I add this additional line
Page.Validate()
Then no errors but when you click submit, no validation occurs.
In a nutsure, we would like to see the following behavior if possible:
1, code continues to work as it has been working with the RegularExpressionValidator solution
2, When a user enters but that data does not meet requirements, the message should display near the txtUserid control and keep focus on that control till data with correct format is entered.
3. Once correct form is entered, then the OnTextChanged event should display message, something like, Proceed to complete rest of the form
I don't know if this is possible or how complicated it will be but will greatly appreciate any assistance.