PartialExtensions.Partial Method (HtmlHelper, String, Object, ViewDataDictionary)
Visual Studio 2010
Renders the specified partial view as an HTML-encoded string.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
public static MvcHtmlString Partial( this 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.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 Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Community Additions
ADD
Show: