如何使用 UNC 路径中的部分内容?

发布于 2024-10-31 18:01:46 字数 776 浏览 0 评论 0原文

我正在尝试使用 UNC 路径中的部分内容。我已经扩展了 RazorViewEngine 以包含路径,并正确注册。当我加载视图时,它显示我已包含正确列出的部分名称的路径,但仍然显示它无法加载视图。

相关代码:


    public class MobileViewEngine : RazorViewEngine
    {
        public MobileViewEngine()
        {
            var viewLocations = new[] {  
            "\\uncserver\views\{0}.cshtml"
        };

            this.PartialViewLocationFormats = viewLocations;
            this.ViewLocationFormats = viewLocations;
        }
    }

链接到部分的 Razor 模板:

@Html.Partial("12\\1\\1.tpl")

错误:

部分视图“12\1\1.tpl”不是 发现或没有视图引擎支持 搜索过的地点。下列 搜索地点: \\uncserver\views\12\1\1.tpl.cshtml

如果我访问它说找不到视图的路径,则视图就在那里。 IIS 正在正确的权限下运行以查看此 unc 路径。

有什么想法吗?

I'm trying to use partials from a UNC path. I've extended the RazorViewEngine to include the path, and registered properly. When I load the view, it shows that path that I have included with the partial name correctly listed, but still shows it can't load the view.

Relevant code:


    public class MobileViewEngine : RazorViewEngine
    {
        public MobileViewEngine()
        {
            var viewLocations = new[] {  
            "\\uncserver\views\{0}.cshtml"
        };

            this.PartialViewLocationFormats = viewLocations;
            this.ViewLocationFormats = viewLocations;
        }
    }

The Razor template linking to the partial:

@Html.Partial("12\\1\\1.tpl")

The error:

The partial view '12\1\1.tpl' was not
found or no view engine supports the
searched locations. The following
locations were searched:
\\uncserver\views\12\1\1.tpl.cshtml

If I visit the path it says it didn't find the view at, the view is there. IIS is running under correct permissions for viewing this unc path.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文