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.

public protected:
PartialViewResult^ PartialView()

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.

public protected:
PartialViewResult^ PartialView(
	Object^ model
)

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.

public protected:
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.

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.

public protected:
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.

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: