Hi,
I have below code in vb.net for validating alphanumeric characters, It is working fine for all alphanumeric characters, However I want to allow user, so that he can insert "*". Please provide me the new regular expression for the above issue.
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:RegularExpressionValidator ID="revSearchCourse" runat="server" Display="Dynamic"
ControlToValidate="txtSearchCourse" ValidationExpression="^[0-9a-zA-Z]+$" ErrorMessage="The Course Name Should be Only Alphanumeric characters"></asp:RegularExpressionValidator>
</td>
</tr>