Advertisement
Guest User

Untitled

a guest
Feb 15th, 2013
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <configuration>
  2. <system.web>
  3. <compilation debug="true" targetFramework="4.0">
  4. <assemblies>
  5. <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=SOMETOKEN"/>
  6. </assemblies>
  7. </compilation>
  8. </system.web>
  9. </configuration>
  10.  
  11. Details: 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 should then have its "mode" attribute set to "Off".
  12.  
  13.  
  14. <!-- Web.Config Configuration File -->
  15.  
  16. <configuration>
  17. <system.web>
  18. <customErrors mode="Off"/>
  19. </system.web>
  20. </configuration>
  21.  
  22. <compilation debug="false" targetFramework="4.0">
  23. <customErrors mode="Off"/>
  24. <assemblies>
  25. <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  26. </assemblies>
  27. </compilation>
  28.  
  29. <customErrors mode="Off"/>
  30. <compilation debug="false" targetFramework="4.0">
  31. <assemblies>
  32. <add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
  33. </assemblies>
  34. </compilation>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement