Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1.  
  2. Server Error in '/' Application.
  3. The given path's format is not supported.
  4. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
  5.  
  6. Exception Details: System.NotSupportedException: The given path's format is not supported.
  7.  
  8. Source Error:
  9.  
  10. The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
  11.  
  12. 1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
  13.  
  14. <%@ Page Language="C#" Debug="true" %>
  15.  
  16. or:
  17.  
  18. 2) Add the following section to the configuration file of your application:
  19.  
  20. <configuration>
  21. <system.web>
  22. <compilation debug="true"/>
  23. </system.web>
  24. </configuration>
  25.  
  26. Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
  27.  
  28. Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
  29.  
  30. Stack Trace:
  31.  
  32.  
  33. [NotSupportedException: The given path's format is not supported.]
  34. System.Security.Util.StringExpressionSet.CanonicalizePath(String path, Boolean needFullPath) +14386745
  35. System.Security.Util.StringExpressionSet.CreateListFromExpressions(String[] str, Boolean needFullPath) +165
  36. System.Security.Permissions.FileIOPermission.AddPathList(FileIOPermissionAccess access, AccessControlActions control, String[] pathListOrig, Boolean checkForDuplicates, Boolean needFullPath, Boolean copyPathList) +151
  37. System.Security.Permissions.FileIOPermission.AddPathList(FileIOPermissionAccess access, String[] pathListOrig, Boolean checkForDuplicates, Boolean needFullPath, Boolean copyPathList) +38
  38. System.Security.Permissions.FileIOPermission..ctor(FileIOPermissionAccess access, String path) +92
  39. System.Web.HttpRequest.MapPath(VirtualPath virtualPath, VirtualPath baseVirtualDir, Boolean allowCrossAppMapping) +246
  40. System.Web.HttpServerUtility.MapPath(String path) +252
  41. ASP.include_t_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) +523
  42. System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +131
  43. System.Web.UI.Page.Render(HtmlTextWriter writer) +40
  44. System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +150
  45. System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +5363
  46.  
  47.  
  48. Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.36415
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement