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 s
GaneshAtkale
Member
514 Points
399 Posts
To enable the details of this specific error message to be viewable on remote machines, please cr...
May 11, 2012 12:34 PM|LINK
Hi,
I am trying to access my web application from IIS6, I m facing this problem..., kindly help
<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>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 <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>MARK AS ANSWER, if my post helps you...
Thanks & Regards
Ganesh Atkale .
Ruchira
All-Star
44392 Points
7194 Posts
MVP
Re: To enable the details of this specific error message to be viewable on remote machines, pleas...
May 11, 2012 05:34 PM|LINK
Hello,
To see the actual error, turn off the custom errors by adding the following tag to your web.config file. It will show you the exact error.
My Tech blog | My YouTube ChannelPlease 'Mark as Answer' if this post helps you.GaneshAtkale
Member
514 Points
399 Posts
Re: To enable the details of this specific error message to be viewable on remote machines, pleas...
May 14, 2012 07:24 AM|LINK
Actually I was missed ">" mark in web.config file
thats why this error was occured. any way its working fine now.
Thanks for reply
MARK AS ANSWER, if my post helps you...
Thanks & Regards
Ganesh Atkale .