Hello,
I might be missing something obvious here, but server-side validation (i.e. Page.IsValid) fails for all my RadTextBox items when javascript is disabled.
It seems as though the input value is not getting passed through. Could someone please shed some light on this...
Many thanks for any response.
Ryan Bartsch.
I might be missing something obvious here, but server-side validation (i.e. Page.IsValid) fails for all my RadTextBox items when javascript is disabled.
<asp:ValidationSummary id="valSummary" runat="server" DisplayMode="BulletList" ShowSummary="true" />
<label for="txtStudentFirstName">First Name</label>
<telerik:RadTextBox ID="txtStudentFirstName" runat="server" CssClass="RadTextBox" MaxLength="30" />
<asp:RequiredFieldValidator id="rfvStudentFirstName" runat="server" ControlToValidate="txtStudentFirstName" ErrorMessage="First Name is required" Display="None" />
It seems as though the input value is not getting passed through. Could someone please shed some light on this...
Many thanks for any response.
Ryan Bartsch.