Controller.PartialView Method (String, Object)
Creates a PartialViewResult object that renders a partial view, by using the specified view name and model.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected Friend Overridable Function PartialView ( _
viewName As String, _
model As Object _
) As PartialViewResult
protected internal virtual PartialViewResult PartialView(
string viewName,
Object model
)
protected public:
virtual PartialViewResult^ PartialView(
String^ viewName,
Object^ model
)
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
Return Value
Type: System.Web.Mvc.PartialViewResult
A partial-view result object.
Remarks
The result object that is prepared by this method is written to the response by the MVC framework when the object is executed.