且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

当验证内容页面上的母版页登录表单时,内容页面字段也将得到验证

更新时间:2023-02-11 11:54:13

您的母版页属性将在您的内容页之间共享

your master page property will be shared between your content page

您的母版页表单ID为Form1

your master page form id is Form1

<form runat="server" id="form1" novalidate>

--------content place holder-------

</form>

您正在像

$("#form1").validate 

因此内容页面也将得到验证,因此请尝试再次检查并做一些不同的事情

so the content page will be also validated so try to check again and do something different