仅当在另一个视图中调用某个操作时才显示该操作的属性是什么?

发布于 2025-01-07 07:28:26 字数 73 浏览 0 评论 0原文

我不记得只允许在视图中调用操作时呈现操作的属性(例如@Html.Action())。谁能唤起我的记忆吗?我不希望能够直接调用该操作。

I cannot remember the attribute that allows only an action to be rendered if it is called within a view (e.g. @Html.Action()). Can anyone refresh my memory? I do not want the action to be able to be called directly.

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

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

发布评论

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

评论(2

离鸿 2025-01-14 07:28:26
[ChildActionOnly]
public ActionResult SomeAction()

更多信息:
http://msdn.microsoft.com/en-us /library/system.web.mvc.childactiononlyattribute.aspx

[ChildActionOnly]
public ActionResult SomeAction()

More info:
http://msdn.microsoft.com/en-us/library/system.web.mvc.childactiononlyattribute.aspx

丑疤怪 2025-01-14 07:28:26

听起来您正在寻找渲染部分视图

@Html.Partial("MyPartial")

Sounds like you're looking to render a Partial View

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