Hello,
Okay i'm pretty new to .net but, i'm aware the maxlength property is ignored in multiline textboxes. I'm also aware that their is a java script solution to the problem, although i don't want to use java. (wouldn't fit the flow of the webpage).
The last alternative i believe is a regular expression validator? which i'm pretty clueless about?
My textbox looks as follows:
<asp:TextBox ID="EditorsTextbox" runat="server" TextMode="MultiLine" MaxLength="195" Width="90%" Rows="8"></asp:TextBox>
Pretty bog standard, how would i go about coding a regex validator for this box to set a maxlength of say 300?
Thanks in advance.
Okay i'm pretty new to .net but, i'm aware the maxlength property is ignored in multiline textboxes. I'm also aware that their is a java script solution to the problem, although i don't want to use java. (wouldn't fit the flow of the webpage).
The last alternative i believe is a regular expression validator? which i'm pretty clueless about?
My textbox looks as follows:
<asp:TextBox ID="EditorsTextbox" runat="server" TextMode="MultiLine" MaxLength="195" Width="90%" Rows="8"></asp:TextBox>
Pretty bog standard, how would i go about coding a regex validator for this box to set a maxlength of say 300?
Thanks in advance.