Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Maybe I'm tired too, but what exactly is the problem? – Shai Cohen May 8 '12 at 23:32
I only want a-z to be allowed. – dev6546 May 8 '12 at 23:33
It looks like your regex is case sensitive, is that what you intended? Or did you want [A-Za-z] ? – Eric H May 8 '12 at 23:35
@LewisElliott: Are you sure? Do you want to disallow upper case letters? Letters with accents? Spaces? Because a-z disallows all these things. – Mark Byers May 8 '12 at 23:36
Ah I see, didnt realise it was case sensitive. I want to allow spaces and capitals. – dev6546 May 8 '12 at 23:37

1 Answer

up vote 1 down vote accepted

Based on your comments, change your regex to "^[A-Za-z ]*$" if you want to allow lower and upper case letters as well as white space in any order. Note that this regex will also match empty string as there are no required number of characters.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.