如何在 asp.net 中使用多个选项卡式界面
我有一个网络应用程序,我正在使用选项卡式界面控件,我在每个选项卡中创建了 4 个选项卡,每个选项卡都有一个 .aspx 应用程序,因此每个应用程序都有 “必填字段验证器”当我单击 tab2 页面中的按钮时,它会检查所有选项卡式应用程序的验证。我该如何解决这个问题,请帮助我..
I have web application in that i am using tabbed interface control in this i have create 4 tabs in each tab having a .aspx application,so each application having the
"required field validators" when i click a button in tab2 page it check the validations all the tabbed apllication.How can i solve this problem please help me..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况的原因是您的选项卡正在提交表单,导致 javascript 在验证器上触发。一个简单的修复方法是让链接不提交任何内容,而只是重定向到新页面。
The reason this is happening is because your tab is submitting your form, causing the javascript to fire on the validators. A simple fix would be to have the link not submit anything and simply redirect to a new page.