在 MVC 3 中使用 Html.RenderPartial() 时出现问题
我有一个用户控件,它从嵌入它的页面接受“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
ViewUserControl3
应该强类型化为Guid
,然后只需使用此模型:Your
ViewUserControl3
should be strongly typed toGuid
and then simply use this model: