如何在控制器中编写操作方法来引用分部视图?

发布于 2024-11-01 00:59:59 字数 727 浏览 0 评论 0原文

我在 ReservationController 类中编写了一个操作方法。为了使此代码正常工作,我应该将 GetCoreTab 文件移至 Reservation 文件夹。我不想这样做,因为我在 ReservationController 类中给出了 GetCoreTab 文件的路径。我想给出路径,以便 GetCoreTab 方法的代码可以在 Reservation 控制器类中工作。

结构:

在此处输入图像描述

代码:

        public PartialViewResult GetCoreTab()
    {
        return PartialView("Tabs/GetCoreTab");
    }

HTML:

<a href="<%= Url.Action("GetCoreTab", "Reservation") %>" class="a">
                <b>
                    <div id="home" class="menu">
                    </div>
                </b>
            </a>

有什么想法吗?

谢谢

I have written an action method in the ReservationController class. To get this code to work I should move the GetCoreTab file to the Reservation folder. I do not want to do that since I give the path of the GetCoreTab file in the ReservationController class. I want to give the path, such that the code for the GetCoreTab method would work from the Reservation controller class.

Structure:

enter image description here

Code:

        public PartialViewResult GetCoreTab()
    {
        return PartialView("Tabs/GetCoreTab");
    }

HTML:

<a href="<%= Url.Action("GetCoreTab", "Reservation") %>" class="a">
                <b>
                    <div id="home" class="menu">
                    </div>
                </b>
            </a>

Any ideas?

Thanks

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

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

发布评论

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

评论(1

神爱温柔 2024-11-08 00:59:59

您可以指定部分的路径:

public PartialViewResult GetCoreTab()
{
    return PartialView("~/Views/Shared/Tabs/GetCoreTab.ascx");
}

You could specify the path to the partial:

public PartialViewResult GetCoreTab()
{
    return PartialView("~/Views/Shared/Tabs/GetCoreTab.ascx");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文