PartialExtensions::Partial Method (HtmlHelper, String)
Renders the specified partial view as an HTML-encoded string.
Namespace: System.Web.Mvc.Html
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
[ExtensionAttribute] public: 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::MvcHtmlStringThe partial view that is rendered as an HTML-encoded string.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type HtmlHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).
Show: