捕捉客户端的事件

asp.net

button:

RaisePostBackEvent

其他通过dopostback回来的:

protected void Page_Load(object sender, EventArgs e)
  {
  string target = Request.Params["__EVENTTARGET"];
  string args = Request.Params["__EVENTARGUMENT"];
  }

原文地址:https://www.cnblogs.com/si812cn/p/1688436.html