Application Pool - ASP problem

M

mettá

I have an FP web site on a shared server (Win2003) and occasionally the site
goes down with a message "Service Unavailable " The ISP says there must be a
problem with the ASP content and excessive use of the Application Pool is
causing the problem

I can't find the cause but wonder if putting

<%Session.Abandon%>

and /or

<%Session.Contents.RemoveAll()%>

on the DB output pages will help to clear the excessive memory usage???

Any ideas???

Thanks
M

--
 
S

Stefan B Rusynko

Use of either at the end of a page will only clear any Session variables
- but unless you are creating lots of session variables that won't help much with memory

If do you use it <%Session.Abandon%> would be the better since it forces a new session on the next page ASP requested

IMHO tell your host to increase the available memory on the server
- it is not just your site but all the other shared sites in that Pool that are having problems


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


|I have an FP web site on a shared server (Win2003) and occasionally the site
| goes down with a message "Service Unavailable " The ISP says there must be a
| problem with the ASP content and excessive use of the Application Pool is
| causing the problem
|
| I can't find the cause but wonder if putting
|
| <%Session.Abandon%>
|
| and /or
|
| <%Session.Contents.RemoveAll()%>
|
| on the DB output pages will help to clear the excessive memory usage???
|
| Any ideas???
|
| Thanks
| M
|
| --
|
|
|
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top