I have a text box to input.
<asp:TextBox ID="txt_namepair" runat="server" Text="<Name>=<Value>">
</asp:TextBox>
I want to add validation using regular expression validator. Now I need regular expression to check the input format as
"alpha numeric string = alphanumeric string"
like <name>=<value> pairs.
When I click on add button those = pairs will be displayed in a listbox.But what I wanted is, I want to check whether those , pairs have equal sign(=) between them by using regular expression. And and pairs should be alpha numeric characters.