点击事件没有被HTML提交按钮调用

我需要在用户控制中添加按钮。 当按钮被点击时,url应该被捕获并存储在会话中。 当我点击按钮时,服务器点击事件没有被调用。 我很困惑,为什么它没有被调用。 我在这里犯了什么错误吗? 请建议。

我有以下代码:

ASCX:

 <input type="submit" id="QuickViewbutton" value="Click to add this page to Quick View"
            runat="server" onserverclick="addQuickView" clientidmode="Static"/>

ascx.cs:

在页面加载中:

 QuickViewbutton.ServerClick += new System.EventHandler(this.addQuickView);

在保护无效addQuickView(对象发件人,EventArgs e)函数我已经编写了获取url的代码:

string strUrl = HttpContext.Current.Request.Url.AbsoluteUri;
Session["QuickViewUrl"] = strUrl;
链接地址: http://www.djcxy.com/p/35703.html

上一篇: Click event not being called for HTML submit button

下一篇: Calling Timer Tick Event from Another class