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>
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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now