Working of page at background without restricting navigation of other pages in asp.net [closed]

HTTP is stateless, so what you are doing in one browser window should not influence what is happening in another window on the same machine.

Hoewever if you rely on serverside state, such as sessions, and not on HTTP POST or GET data, yes, you run into trouble when someone opens your site in two tabs, because the same data will be displayed in both tabs. At least, that’s what I guess your problem is according to your question.

To solve that, remove the session logic and rely on data supplied with each request, such as POST and GET.

If you have a totally different problem, please try to explain again what you mean with “implement a page running in background without having restriction from navigating to other pages”.

Leave a Comment