Controller.PartialView Method

 

Creates a PartialViewResult object that renders a partial view.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_protmethodPartialView()

Creates a PartialViewResult object that renders a partial view.

System_CAPS_protmethodPartialView(Object)

Creates a PartialViewResult object that renders a partial view, by using the specified model.

System_CAPS_protmethodPartialView(String)

Creates a PartialViewResult object that renders a partial view, by using the specified view name.

System_CAPS_protmethodPartialView(String, Object)

Creates a PartialViewResult object that renders a partial view, by using the specified view name and model.

Return to top

Controller.PartialView Method ()

Creates a PartialViewResult object that renders a partial view.

member PartialView : unit -> PartialViewResult

Return Value

Type: System.Web.Mvc.PartialViewResult

A partial-view result object.

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.

Return to top

Controller.PartialView Method (Object)

Creates a PartialViewResult object that renders a partial view, by using the specified model.

member PartialView : 
        model:Object -> PartialViewResult

Parameters

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.

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.

Return to top

Controller.PartialView Method (String)

Creates a PartialViewResult object that renders a partial view, by using the specified view name.

member PartialView : 
        viewName:string -> PartialViewResult

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.

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.

Return to top

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

Return Value

Type: System.Web.Mvc.PartialViewResult

A partial-view result object.

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.

Return to top
Show: