TheConeHead
Programmer
I have a page that I usually get an eplanation as to an error (i.e. Syntax error) but now I only get "Page can not be displayed" Why would that be - anyway to force it to give me the details?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Response.Write Err.Description
Response.End
If Err.Number <> 0 Then
Response.Write "ERROR: " & Err.Number & "<br>" & Err.Description & "<br>" & "Please contact IT for assistance."
Response.End
End If