PartialExtensions::Partial Method
Renders the specified partial view as an HTML-encoded string.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | Partial(HtmlHelper^, String^) | Renders the specified partial view as an HTML-encoded string. |
![]() ![]() | Partial(HtmlHelper^, String^, Object^) | Renders the specified partial view as an HTML-encoded string. |
![]() ![]() | Partial(HtmlHelper^, String^, Object^, ViewDataDictionary^) | Renders the specified partial view as an HTML-encoded string. |
![]() ![]() | Partial(HtmlHelper^, String^, ViewDataDictionary^) | Renders the specified partial view as an HTML-encoded string. |
PartialExtensions::Partial Method (HtmlHelper^, String^)
Renders the specified partial view as an HTML-encoded string.
public: [ExtensionAttribute] static MvcHtmlString^ Partial( HtmlHelper^ htmlHelper, String^ partialViewName )
Parameters
- htmlHelper
-
Type:
System.Web.Mvc::HtmlHelper^
The HTML helper instance that this method extends.
- partialViewName
-
Type:
System::String^
The name of the partial view to render.
Return Value
Type: System.Web.Mvc::MvcHtmlString^The partial view that is rendered as an HTML-encoded string.
PartialExtensions::Partial Method (HtmlHelper^, String^, Object^)
Renders the specified partial view as an HTML-encoded string.
public: [ExtensionAttribute] static MvcHtmlString^ Partial( HtmlHelper^ htmlHelper, String^ partialViewName, Object^ model )
Parameters
- htmlHelper
-
Type:
System.Web.Mvc::HtmlHelper^
The HTML helper instance that this method extends.
- partialViewName
-
Type:
System::String^
The name of the partial view to render.
- model
-
Type:
System::Object^
The model for the partial view.
Return Value
Type: System.Web.Mvc::MvcHtmlString^The partial view that is rendered as an HTML-encoded string.
PartialExtensions::Partial Method (HtmlHelper^, String^, Object^, ViewDataDictionary^)
Renders the specified partial view as an HTML-encoded string.
public: [ExtensionAttribute] static MvcHtmlString^ Partial( HtmlHelper^ htmlHelper, String^ partialViewName, Object^ model, ViewDataDictionary^ viewData )
Parameters
- htmlHelper
-
Type:
System.Web.Mvc::HtmlHelper^
The HTML helper instance that this method extends.
- partialViewName
-
Type:
System::String^
The name of the partial view.
- model
-
Type:
System::Object^
The model for the partial view.
- viewData
-
Type:
System.Web.Mvc::ViewDataDictionary^
The view data dictionary for the partial view.
Return Value
Type: System.Web.Mvc::MvcHtmlString^The partial view that is rendered as an HTML-encoded string.
PartialExtensions::Partial Method (HtmlHelper^, String^, ViewDataDictionary^)
Renders the specified partial view as an HTML-encoded string.
public: [ExtensionAttribute] static MvcHtmlString^ Partial( HtmlHelper^ htmlHelper, String^ partialViewName, ViewDataDictionary^ viewData )
Parameters
- htmlHelper
-
Type:
System.Web.Mvc::HtmlHelper^
The HTML helper instance that this method extends.
- partialViewName
-
Type:
System::String^
The name of the partial view to render.
- viewData
-
Type:
System.Web.Mvc::ViewDataDictionary^
The view data dictionary for the partial view.
Return Value
Type: System.Web.Mvc::MvcHtmlString^The partial view that is rendered as an HTML-encoded string.

