Tag: postback

OnclientClick和OnClick不在同一时间工作?

我有一个像下面这样的button, <asp:Button ID="pagerLeftButton" runat="server" OnClientClick="disable(this)" onclick="pager_Left_Click" Text="<" /> 当我使用我的button时,onclick不会触发。 当我删除OnClientClick,然后onclick发射。 我需要做的是,在回发期间禁用button,并在回发结束后启用它。 编辑:其他信息: 我添加了中断点,我的发射function是C#部分,我正在debugging,他们不是肯定的射击。 这些function就像 protected void pager_Left_Click(object sender, EventArgs e) { //Do smthing. } protected void pager_Right_Click(object sender, EventArgs e) { //Do smthing. } 当我点击我的button,它被禁用1-2秒,并自动启用,但我不知道为什么它启用。 我没有添加任何部分让它再次启用。

回发或callback参数无效。 事件validation使用'<pages enableEventValidation =“true”/>'

当我从客户端回发一页时,出现以下错误。 我有JavaScript代码,修改客户端的asp:ListBox。 我们如何解决这个问题? 以下错误详情: Server Error in '/XXX' Application. ——————————————————————————– Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If […]