IHttpModule behaves differently on different serve

2019-07-22 00:21发布

I'm developing an application and I'm debugging the code with Visual Studio 2013 and Visual Studio 2010 and the code behaves differently with the two programs.

In VS 2010, after the code behind has been executed and the page has been built, the execution ends. In VS 2013, after the page has been built, it gets fired another call to the method context_BeginRequest(object sender, EventArgs e) in IHttpModule, which I have implemented.

First problem is: why is there this additional call?

Second problem: the IHttpModule gets the path through GetVirtualPath(), and then makes a redirection with it. The problem is: why is the path got the path of the starting page and not the page it is currently in?

1条回答
Root(大扎)
2楼-- · 2019-07-22 01:06

Perhaps it's this function: Using Browser Link in Visual Studio 2013
but i have no idea, sry :/

查看更多
登录 后发表回答