我先贴一下我的代码
  
      protected void Application_BeginRequest(Object sender, EventArgs e)
        {
            if (!Common.RequestMy.IsBrowserGet())//判断是不是浏览器发出的请求
            {
                Response.End();//如果不是中断当前请求,使请求不传递到具体页面。
            }
        }请求前的处理是在Global.asax 里面处理的吧?怎么中断这个请求呢?