Advertisement
Guest User

Untitled

a guest
Aug 15th, 2013
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <configuration>
  2. <system.web>
  3. <customErrors mode="Off"/>
  4. </system.web>
  5. </configuration>
  6.  
  7. <configuration>
  8. <system.web>
  9. <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
  10. </system.web>
  11. </configuration>
  12.  
  13. <?xml version="1.0"?>
  14. <configuration>
  15.  
  16. <system.web>
  17. <customErrors mode="Off"/>
  18. </system.web>
  19.  
  20. <system.web>
  21. <compilation debug="true"/>
  22. <authentication mode="None"/>
  23. </system.web>
  24. </configuration>
  25.  
  26. <system.web>
  27. <customErrors mode="Off"/>
  28. <compilation debug="true"/>
  29. <authentication mode="None"/>
  30. </system.web>
  31. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement