0

有没有办法拦截asp.net ajax webmethods(aspx页面静态方法)?

我想在请求到达方法之前以及发送响应之后进行拦截。

4

2 回答 2

1

在 global.asax 文件中使用

    protected void Application_BeginRequest(Object sender, EventArgs e)
    {
        //before method colling
        string ss = HttpContext.Current.Request.Url.ToString();//use if it is equal to your page webmethod url  i.e. domain.com/dfault.aspx/GetMessage;
if(ss=="http://domain.com/dfault.aspx/GetMessage")
{
do your work here
}
    }

    protected void Application_EndRequest(Object sender, EventArgs e)
    {
        //after method colling
        string ss = HttpContext.Current.Request.Url.ToString();// use if  it is equal to your page webmethod i.e. domain.com/dfault.aspx/GetMessage;;

if(ss=="http://domain.com/dfault.aspx/GetMessage")
{
do your work here
}
    }
于 2013-06-29T12:30:50.310 回答
0

你可以试试fiddlerHTtamper

于 2013-06-29T12:16:37.520 回答