我想在HttpModule中拦截到客户端所请求的对应事件或者控件ID 花了一下午时间研究取到的字符串 还是很蒙 可能方法就不正确吧 小弟分不多 倾我所有啦  public void Init(HttpApplication context)
    {
        context.AcquireRequestState += new EventHandler(context_AcquireRequestState);
    }    void context_AcquireRequestState(object sender, EventArgs e)
    {
        HttpApplication application = (HttpApplication)sender;
        HttpContext context = application.Context;
        string s = context.Request.Form["__EVENTVALIDATION"];
            .......        
    }