Hello,
I need help with a small issue about a Windows 2008 + IIS7 + ASP.
About the feature in IIS7 > ASP > Compilation > Send Errors to Browser = True
is done exactly as shown in http://blogs.iis.net/bills/archive/2007/05/21/tips-for-classic-asp-developers-on-iis7.aspx
I created a code in .asp with error Intentionally to see an error... the code are:
Response.write "OK"
While not False
Loop
However, a very strange thing is happening.
Accessing the page .asp in the same server the error is shown the correct (and expected) error like:
Compilation error from Microsoft VBScript error '800a040e'
'loop' without 'do'
default.asp, line 4
Loop
^
But when the same script is accessed from another location (via browser), the errors are not specific, and is displaying an Dark and light gray page like the following:
Server Error
500 - Internal Server error.
There is a problem with the resource that you are looking for and can“t be shown
(Sorry, the actual server is installed in Portuguese, so I have to translate the msg error, so, probably is a slightly different from the error in a english installation)
Can anyone help me to see why the error locally and remotely is different?
I need to send the same error locally to another host.