I am getting an error in my viewuser control:
Could not load type 'System.Web.Mvc.ViewUserControl'
My viewpage passes the MyViewUserContr开发者_如何学PythonollerUserList class in the RenderPartial call.
So I am doing:
- action creates its strongly typed view data, which has a property which is a strongly typed class that my userlist.ascx expects.
userlist.ascx:
Inherits="System.Web.Mvc.ViewUserControl<MyViewUserControllerUserList>"
Am I doing this correctly?
Update
Just to make sure, my code for my strongly typed partial user control is:
 public class MyViewUserControllerUserList: ViewUserControl 
{
}
The syntax you have looks correct, however you need to make sure the namespace is incuded as well.
Inherits="System.Web.Mvc.ViewUserControl<My.Class.Namespace.ModelClass>"
Then you would pass it in like this
<% Html.RenderPartial("PartialName", InstanceOfModelClass); %>
Then access it inside the partial using the Model property.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论