Controller.PartialView Method (String)
Creates a PartialViewResult object that renders a partial view, by using the specified view name.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Protected Friend Function PartialView ( _
viewName As String _
) As PartialViewResult
protected internal PartialViewResult PartialView(
string viewName
)
protected public:
PartialViewResult^ PartialView(
String^ viewName
)
Parameters
- viewName
Type: System.String
The name of the view that is rendered to the response.
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.