problem with customErrors tag
-
hi guys.. i just opened a new asp webform and wrote "hello world" in the wysiwyg editor of visual studios 2005 and ran it, and it worked fine in my system. but when i uploaded it to my website it is showing an error page asking me to put a customerror tag with mode set to "off" and i did exactly as it said but still it is showing the exact same error page... what is the problem ... my web hoster do has an asp server running..
-
hi guys.. i just opened a new asp webform and wrote "hello world" in the wysiwyg editor of visual studios 2005 and ran it, and it worked fine in my system. but when i uploaded it to my website it is showing an error page asking me to put a customerror tag with mode set to "off" and i did exactly as it said but still it is showing the exact same error page... what is the problem ... my web hoster do has an asp server running..
This error is masking the true error you are recieving as the Web.config file of your application has the customErrors tag mode attribute not set to "off". Open the Web.config file of your application and update the customErrors tag as follows:
<customErrors mode="Off" />
Clean code is the key to happiness.
-
This error is masking the true error you are recieving as the Web.config file of your application has the customErrors tag mode attribute not set to "off". Open the Web.config file of your application and update the customErrors tag as follows:
<customErrors mode="Off" />
Clean code is the key to happiness.
hii newc1 thanx for replying. but i figured the source of the problem.. its not with the code.. its the prob with the webhosters.. the asp server which was running was 1.0 where as mine required 2.0 so iv asked them to upgrade it.. hopefully things should get normal once it is upgraded..