-
Posted to
IIS7 - Classic ASP
by
Bjorn S
on
06-17-2009, 2:12 AM
Hi!
This is how my section looked like. My virtual directorys name is "Arbetstagare" and it's under the Default Web Site.
<location path="Default Web Site/Arbetstagare">
...
-
Posted to
IIS7 - Classic ASP
by
Bjorn S
on
03-27-2009, 7:40 AM
I think you can use Failed Request Tracing and narrow the problem down quite a bit.
Create a trace rule that catches long running pages, run the page and look at the output file that is created under inetpub\Logs\FailedReqLogfiles. Use Internet Explorer to open it. Under Request Details you can find timing information for the ...
-
Posted to
IIS7 - Classic ASP
by
Bjorn S
on
03-26-2009, 6:59 AM
I have found a solution for this myself. The trick was to set
<asp runOnEndAnonymously="false">
for the application in applicationhost.config.
-
Posted to
IIS7 - Classic ASP
by
Bjorn S
on
03-25-2009, 10:47 AM
You can force a dialog where you will be asked which debugger you would like to choose by entering Stop in the ASP-page at a row right before where you want to start debugging. That invokes the debugger (this is of course only for testing purposes and should be removed after the test is finished).
That way you don't have to worry about ...
-
Posted to
IIS7 - Classic ASP
by
Bjorn S
on
03-25-2009, 5:29 AM
I'm porting our application to IIS 7. The application is very big and uses a mixture of Classic ASP and ASP.Net pages. So far there haven't any problems, but now I've encountered one thing that is a bit irritating.
I really like the possibility to use the application pool account as the anonymous account. That way you get a much more ...