在 MVC 3 中使用 Html.RenderPartial() 时出现问题

发布于 2024-11-10 09:23:10 字数 184 浏览 0 评论 0原文

我有一个用户控件,它从嵌入它的页面接受“Id”。我使用以下代码来显示“ <% Html.RenderPartial("ViewUserControl3", Model.Guid); %>”在页面上显示具有特定 id 的用户控件。任何人请帮助我如何在我的用户控件页面中获取该 Guid 并在调用它的页面上显示用户控件。

提前致谢

I have a user control which accepts an 'Id' from the page where it is embedded. I used the following code to display " <% Html.RenderPartial("ViewUserControl3", Model.Guid); %>" to display the user control with specific id on the page. Any one please help me How to get that Guid in my usercontrol page and display the user control on the page where it is called.

Thanks in Advance

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

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

发布评论

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

评论(1

温折酒 2024-11-17 09:23:10

您的 ViewUserControl3 应该强类型化为 Guid,然后只需使用此模型:

<%@ Control 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewUserControl<System.Guid>" %>

<div><%= Model %></div>

Your ViewUserControl3 should be strongly typed to Guid and then simply use this model:

<%@ Control 
    Language="C#" 
    Inherits="System.Web.Mvc.ViewUserControl<System.Guid>" %>

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