Hi there,
I am buiding my site/app in .net and am using the built in asp form validators:
<asp:RequiredFieldValidator ID="rfvname" runat="server" ControlToValidate="txtname" ErrorMessage="Name is required"></asp:RequiredFieldValidator>
These are working correctly and without flaws except when the submit button of the form is pressed, I get a message from the jQuery framework saying "error loading page".
How can I fix this?
Thanks.