Asp.net MVC IIS 无法执行 URL
Asp.net MVC IIS Failed to Execute URL
您好,我在 asp.net mvc 5 网络应用程序中使用 CKEditor 上的 CKFinder。问题只是远程服务器,本地服务器没有问题。当我 select 在 CKEditor 上添加图像并单击浏览服务器时,我的 url 是 //Scripts/ckfinder/ckfinder.html?type=Images&CKEditor=Text&CKEditorFuncNum=1&langCode=tr
。由于 mvc 不允许直接 link 即 ckfinder.html
IIS 给出错误。错误是:System.Web.HttpException: Failed to Execute URL
。如何修复错误?
描述:
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.
异常详情:
System.Web.HttpException: Failed to Execute URL.
来源错误:
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of
the exception can be identified using the exception stack trace below.
堆栈跟踪:
[HttpException (0x80004005): Failed to Execute URL.]
System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6.BeginExecuteUrl(String url, String method, String childHeaders, Boolean sendHeaders, Boolean addUserIndo, IntPtr token, String name, String authType, Byte[] entity, AsyncCallback cb, Object state) +2582829
System.Web.HttpResponse.BeginExecuteUrlForEntireResponse(String pathOverride, NameValueCollection requestHeaders, AsyncCallback cb, Object state) +412
System.Web.DefaultHttpHandler.BeginProcessRequest(HttpContext context, AsyncCallback callback, Object state) +192
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +301
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
错误0x80004005 好像是权限问题。将 IIS "pipeline mode" 从 "classic" 更改为 "integrated"
您好,我在 asp.net mvc 5 网络应用程序中使用 CKEditor 上的 CKFinder。问题只是远程服务器,本地服务器没有问题。当我 select 在 CKEditor 上添加图像并单击浏览服务器时,我的 url 是 //Scripts/ckfinder/ckfinder.html?type=Images&CKEditor=Text&CKEditorFuncNum=1&langCode=tr
。由于 mvc 不允许直接 link 即 ckfinder.html
IIS 给出错误。错误是:System.Web.HttpException: Failed to Execute URL
。如何修复错误?
描述:
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.
异常详情:
System.Web.HttpException: Failed to Execute URL.
来源错误:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
堆栈跟踪:
[HttpException (0x80004005): Failed to Execute URL.]
System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6.BeginExecuteUrl(String url, String method, String childHeaders, Boolean sendHeaders, Boolean addUserIndo, IntPtr token, String name, String authType, Byte[] entity, AsyncCallback cb, Object state) +2582829
System.Web.HttpResponse.BeginExecuteUrlForEntireResponse(String pathOverride, NameValueCollection requestHeaders, AsyncCallback cb, Object state) +412
System.Web.DefaultHttpHandler.BeginProcessRequest(HttpContext context, AsyncCallback callback, Object state) +192
System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +301
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +155
错误0x80004005 好像是权限问题。将 IIS "pipeline mode" 从 "classic" 更改为 "integrated"