我在.NET 4.0中使用Twitter-Bootstrap.我没有使用任何额外的
jquery验证插件.
我有这个代码:
<asp:TextBox ID="Url" runat="server" required Text='' placeholder="enter the URL" pattern="http://*" messages="Must start with 'http://' or 'https://' "></asp:TextBox>
如果我输入’asdf’,则正则表达式验证有效:
我的问题是:如何自定义“请匹配请求的格式”错误,说“必须以’http://’或’https://’开头”?
如你所见,我尝试过“messages =”.我也尝试了其他几个.