I am facing following problem, Please Help
-
i have made small web application using C# ,asp.net (VIsual Basic 2005). when i am runing in intranet. i faced following error. Please Help 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 tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off". Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.
regards imran khan
-
i have made small web application using C# ,asp.net (VIsual Basic 2005). when i am runing in intranet. i faced following error. Please Help 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 tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off". Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.
regards imran khan
yes , put this tag into your web.config file in between tag . then it will show you errors in your site.
Naveed Kamboh Complexity kills, Write easy code for your self. isolutionteam
-
i have made small web application using C# ,asp.net (VIsual Basic 2005). when i am runing in intranet. i faced following error. Please Help 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 tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off". Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.
regards imran khan
Change your web.config file so that you get an error message. Or use some error handling in your code.
-
i have made small web application using C# ,asp.net (VIsual Basic 2005). when i am runing in intranet. i faced following error. Please Help 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 tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off". Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.
regards imran khan
Firsts, enable the details of errors by write this in Web.config: So, write the full details of the error so that we can help you. Bye, ;) Carmine, Webmaster of: www.thetotalsite.it My web blog: blog.thetotalsite.it
-
Firsts, enable the details of errors by write this in Web.config: So, write the full details of the error so that we can help you. Bye, ;) Carmine, Webmaster of: www.thetotalsite.it My web blog: blog.thetotalsite.it
Actually.. <customErrors mode="Off"/> Should correct the problem. I also had a LOT of trouble with this... I had to change the customErrors tag to <customErrors mode="Off"/> And remove the <authentication/> (or something) completely.
MulleDK13 (http://www.splintercell3.treesoft.dk)