当前位置:  开发笔记 > 编程语言 > 正文

ASP.NET:检查page_load中的click事件

如何解决《ASP.NET:检查page_load中的click事件》经验,为你挑选了1个好方法。

在c#中,如何检查页面加载方法中是否已单击链接按钮?

我需要知道在点击事件被触发之前是否被点击了.



1> Jared..:
if( IsPostBack ) 
{
    // get the target of the post-back, will be the name of the control
    // that issued the post-back
    string eTarget = Request.Params["__EVENTTARGET"].ToString();
}

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有