hi
My Validation part like this
<asp:RegularExpressionValidator ID="UrlRefs" runat="server" ControlToValidate="urlName"
Display="None" ErrorMessage="Invalid Url Name" ForeColor="Red" ValidationExpression="http(s)?://([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?"
ValidationGroup="AddRecord"></asp:RegularExpressionValidator>
<asp:ValidatorCalloutExtender ID="val1" runat="server" PopupPosition="BottomRight"
TargetControlID="UrlRefs"></asp:ValidatorCalloutExtender>
here i need allow input like this only how will do this.
I need allow this only.
===========================
Ex:
1.http://welcome.com
2.www.welcome.com
3.http://www.welcome.com
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com