reset application session

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
is there another way to clear out Application Session variables besides
doing an iisreset? Could you just reset the one application/virtual directory?

thanks,
rodchar
 
Application.Clear()?

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
 
rodchar,
First, this is really an ASP.NET group question, it doesn't relate
specifically to the C# language, which is what this group is for.

You need to clarify what you mean by "Application Session variables". Do you
mean Application variables, or Session variables? These are two different
things.

this article shows 2 different ways to restart an ASP.NET application
gracefully without using IISReset:

http://www.eggheadcafe.com/tutorial...f2-e68b28dbe836/restart-aspnet-apps-prog.aspx

Peter
 
Back
Top