Controller.PartialView Method
Creates a PartialViewResult object that renders a partial view.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | PartialView() | Creates a PartialViewResult object that renders a partial view. |
![]() | PartialView(Object) | Creates a PartialViewResult object that renders a partial view, by using the specified model. |
![]() | PartialView(String) | Creates a PartialViewResult object that renders a partial view, by using the specified view name. |
![]() | PartialView(String, Object) | Creates a PartialViewResult object that renders a partial view, by using the specified view name and model. |
Controller.PartialView Method ()
Creates a PartialViewResult object that renders a partial view.
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
Controller.PartialView Method (Object)
Creates a PartialViewResult object that renders a partial view, by using the specified model.
Parameters
- model
-
Type:
System.Object
The model that is rendered by the partial view
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
Controller.PartialView Method (String)
Creates a PartialViewResult object that renders a partial view, by using the specified view name.
Parameters
- viewName
-
Type:
System.String
The name of the view that is rendered to the response.
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
Controller.PartialView Method (String, Object)
Creates a PartialViewResult object that renders a partial view, by using the specified view name and model.
abstract PartialView : viewName:string * model:Object -> PartialViewResult override PartialView : viewName:string * model:Object -> PartialViewResult
Parameters
- viewName
-
Type:
System.String
The name of the view that is rendered to the response.
- model
-
Type:
System.Object
The model that is rendered by the partial view
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
