asp.net CompareValidator 在提交时未按预期运行

发布于 2024-10-01 21:38:27 字数 760 浏览 1 评论 0原文

我正在尝试让 CompareValidator 工作,但遇到一些问题。如果提交按钮不运行函数,则它可以正常工作,但如果按钮附加了函数,则验证器将无法工作。

这是代码。

Sub myGo(sender As Object, e As EventArgs)
    response.redirect("http://www.google.co.uk")
End Sub

有什么想法吗

<form runat="server">
<asp:TextBox id="txt1" runat="server" /> = <asp:TextBox id="txt2" runat="server" /> <asp:Button OnClick="myGo" Text="not working with onclick" runat="server" /> <asp:Button Text="working button" runat="server" />
<br />
<asp:CompareValidator EnableClientScript="false" id="compval" Display="dynamic" ControlToValidate="txt1" ControlToCompare="txt2" Type="String" Text="Validation Failed!" runat="server" />
</form>

I'm trying to get a CompareValidator to work but having a few problems. If the submit button does not run a function it works fine, but the validator does not work if there is a function attached to the button.

Here's the code.

Sub myGo(sender As Object, e As EventArgs)
    response.redirect("http://www.google.co.uk")
End Sub

and

<form runat="server">
<asp:TextBox id="txt1" runat="server" /> = <asp:TextBox id="txt2" runat="server" /> <asp:Button OnClick="myGo" Text="not working with onclick" runat="server" /> <asp:Button Text="working button" runat="server" />
<br />
<asp:CompareValidator EnableClientScript="false" id="compval" Display="dynamic" ControlToValidate="txt1" ControlToCompare="txt2" Type="String" Text="Validation Failed!" runat="server" />
</form>

any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不必你懂 2024-10-08 21:38:27

验证器应该可以正常工作,但您可能应该仅在页面有效时才执行重定向:

Sub myGo(sender As Object, e As EventArgs)
    If Page.IsValid Then
        Response.Redirect("http://www.google.co.uk")
    End If
End Sub

The validator should work fine, but you probably ought to perform the redirect only if the page is valid:

Sub myGo(sender As Object, e As EventArgs)
    If Page.IsValid Then
        Response.Redirect("http://www.google.co.uk")
    End If
End Sub
呢古 2024-10-08 21:38:27

使用 ValidationGroup="...."

Use ValidationGroup="...."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文