how to keep asp.net application running?

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

Guest

Hello, everyone

Could anyone tell me how to keep asp.net running even without any Session exist
My web application don't run frequently, but the performance is critical. I want to skip the time that application needs to start when our customer run it

Thanks a lot for your help

Haiwen
 
If you want to tweak settings to ensure a non-used app stays up, you can
always set up:

<httpRuntime>
<processModel>

If the app has a failure, it will still come down, but these will ensure an
app stays up. I would not be too worried about this in most apps as the JIT
compilation takes a second or so, but you may have something complex enough
to warrant tweaking settings.

The .NET help file has information on both of these sections of the .config
file.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
haiwen said:
Hello, everyone:

Could anyone tell me how to keep asp.net running even without any Session exist.
My web application don't run frequently, but the performance is critical.
I want to skip the time that application needs to start when our customer
run it.
 
Back
Top