如何在控制器中编写操作方法来引用分部视图?
我在 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以指定部分的路径:
You could specify the path to the partial: