RenderPartialExtensions::RenderPartial Method (HtmlHelper, String)
Visual Studio 2010
Renders the specified partial view by using the specified HMTL helper.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
[ExtensionAttribute] public: static void RenderPartial( HtmlHelper^ htmlHelper, String^ partialViewName )
Parameters
- htmlHelper
- Type: System.Web.Mvc::HtmlHelper
The HTML helper.
- partialViewName
- Type: System::String
The name of the partial view
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).The RenderPartial method renders an ASP.NET user control (.ascx file) as a partial view.
When a partial view is instantiated, it gets its own copy of the ViewDataDictionary object that is available to the parent view. Therefore, the partial view has access to the data of the parent view. However, if the partial view updates the data, those updates affect only the partial view's ViewData object. The parent view's data is not changed.
Community Additions
ADD
Show: