I'd like to use a asp:RegularExpressionValidator where the ValidatorExpression is a regex that matches all strings that do not contain an ampersand. Google fu didn't yield much, but I'm sure it's probably not too complicated.
<asp:RegularExpressionValidator
ID="StringValidator1"
runat="server"
ControlToValidate="textBox1"
ValidationExpression="???"
Display="Dynamic"
ErrorMessage="String cannot contain ampersands"
ValidationGroup="Group1"
/>
Thanks.