|
The server does give an error message, just not a useful one. Its like a deftaul error page for any file that cannot run/execute. For those who aren't .net people here's what it looks like:
Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File --><configuration> <system.web> <customErrors mode="Off"/> </system.web></configuration
I didnt mean to get angry with anyone, it just seems like people keep asking me what the error is but I keep saying I cant see the error. If I cant see the compiler error (because you cant from the client side) there is nothing I can do to see why it's not running. I dont think the OS matters in this case, I believe it to be a potential server issue with which version they have. My system is just XP with IIS 5.0, the shared server is MS 2000 with the asp.net version1 packaged installed. I dont know enough about the dotnet Framework environment to talk to the server hosting company and ask them any kind of detailed questions.
|