MenuAdapter.RenderContents(HtmlTextWriter) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes the associated menu items in the associated Menu control to the output stream as a series of hyperlinks.
protected:
override void RenderContents(System::Web::UI::HtmlTextWriter ^ writer);
protected override void RenderContents (System.Web.UI.HtmlTextWriter writer);
override this.RenderContents : System.Web.UI.HtmlTextWriter -> unit
Protected Overrides Sub RenderContents (writer As HtmlTextWriter)
Parameters
- writer
- HtmlTextWriter
The HtmlTextWriter containing methods to build and render the device-specific output.
Exceptions
The depth of the current item is more than allowed.
-or-
The current item is disabled.
Remarks
The RenderContents method writes the MenuItem objects of the associated Menu control to the output stream as hyperlinks. The RenderContents method is called from the Render method and is used to perform modifications to the markup code that is rendered to a device browser.
Control properties should be set prior to this phase of the life cycle, and only the actual markup creation for the control done here. Changes made to the control in this stage of the life cycle are not saved to view state. For saving changes made to the control, override the OnPreRender event.