It's been a long day and I have one little bit left to do on my coursework, but I cant see for the life of me why this regular expression validator isnt working in my aspx file.
<asp:GridView ID="GridView1" runat="server"></asp:GridView>
<br />
Product:
<asp:TextBox ID="TextBox2" runat="server" ></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1"
runat="server" ErrorMessage="a-z only" ControlToValidate="TextBox2"
ValidationExpression="^[a-z]*$"></asp:RegularExpressionValidator>
<br />
<br />
<br />
Old Name:
<asp:DropDownList ID="ddItems" runat="server" Width="128px" AutoPostBack="true" >
</asp:DropDownList>
<br />
<br />
New Name:
<asp:TextBox ID="TextBox3" runat="server" ontextchanged="TextBox3_TextChanged" AutoPostBack="true" ></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator2"
runat="server" ErrorMessage="a-z only" ControlToValidate="TextBox3"
ValidationExpression="^[a-z]*$"></asp:RegularExpressionValidator>
<br />
<br />
<asp:Button ID="Button2" runat="server" onclick="Button2_Click" Text="Update Name" />
<div align="left">
<asp:Button ID="back" runat="server" Text="Back" onclick="back_Click" />
Sometimes they allow text, which is the desired behavoir, sometimes they don't. Could this be down to my c sharp code or is the bug definitely in the aspx file?
regards, Lewis.
a-zdisallows all these things. – Mark Byers May 8 '12 at 23:36