Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Building Project Disconnects Users

Status
Not open for further replies.

aesseal

Programmer
Nov 29, 2002
23
US
Does anybody know if there's a way to build an asp.net project without disconnecting any active users?
Whenever I debug or release any of my asp.net projects any active sessions are destroyed and active users are sent back to the login page. There must be some way around this, or you can only debug or compile when nobody else is using it.

Help!!!!
 
You need to have a test web site for doing your debugging. When you build you recreate the DLL and that stops the application. Then you only impact your users when you deploy the new DLL to production.
 
Yeah, not only will you disconnect users on a rebuilt website, you'll also lock everyone out when you're debugging: when you stop at a breakpoint, the whole process stops and no one can proceed until you let it run again.

Debug locally, then push changes out when the app isn't getting used.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top