IHttpModule behaves differently on different servers
Asked Answered
M

1

2

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?

Mweru answered 26/11, 2014 at 12:34 Comment(4)
Can you post the 1st and 2nd call URL?Calliper
1. localhost:50166/Account/Register_Step0.aspx (last correct call) 2. localhost:50166/__browserLink/requestData/… (additional call) 3. localhost:50166/Account/… (additional call, from the login page!!)Mweru
Perhaps it's this function: asp.net/visual-studio/overview/2013/using-browser-link but i have no idea, sry :/Calliper
Thanks, it worked. If you write it as answer I will mark it.Mweru
C
0

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

Calliper answered 28/11, 2014 at 10:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.