williamx Posted March 3, 2013 Posted March 3, 2013 How can i fix this error ? http://williamx.heliohost.org/ My web.config like this <?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <compilation debug="true"/> <authentication mode="None"/> <customErrors mode="Off"/> </system.web> </configuration> Quote
Krydos Posted March 3, 2013 Posted March 3, 2013 Here is what my web.config looks like for showing remote error messages. <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.web> <customErrors mode="Off"/> <compilation> <assemblies> <add assembly="*"/> </assemblies> </compilation> </system.web> </configuration> The major difference I see is my <customErrors mode="Off"/> is outside the <compilation></compilation> tags. Try that and let us know if it works. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.