返回特定视图
我有一个控制器 ~/Controllers/MyController.cs 和一个视图 ~/Views/My/V1.ascx 。如何在控制器的 ReturnV1 方法中返回视图 V1.ascx?我尝试过:
return View("V1");
但它返回一个空响应而不是我的视图。
I have a controller at ~/Controllers/MyController.cs and a view ~/Views/My/V1.ascx . How can I return view V1.ascx in a controller's ReturnV1 method? I tried:
return View("V1");
but it returns an empty response instead of my view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否打算使用
PartialView("V1")</code> 而不是
View("V1")</code> (因为该视图称为
V1.ascx
) ?或者您在同一文件夹中是否有另一个名为
V1.aspx
的(空)视图?在这种情况下,这将优先于 ascx 视图。Did you mean to use
PartialView("V1")
instead ofView("V1")
(since the view is calledV1.ascx
)?Or do you have another (empty) view named
V1.aspx
in the same folder? In that case, this will have precedence over the ascx View.您的视图是用户控制(ascx)文件,但应该是aspx。
Your view is user control (ascx) file but should be aspx.