MenuAdapter.RenderItem Method

Note: This method is new in the .NET Framework version 2.0.

Renders a single menu item as a hyperlink.

Namespace: System.Web.UI.WebControls.Adapters
Assembly: System.Web (in system.web.dll)

protected public:
virtual void RenderItem (
	HtmlTextWriter^ writer, 
	MenuItem^ item, 
	int position
)
protected void RenderItem (
	HtmlTextWriter writer, 
	MenuItem item, 
	int position
)
protected internal function RenderItem (
	writer : HtmlTextWriter, 
	item : MenuItem, 
	position : int
)

Parameters

writer

The HtmlTextWriter containing methods to build and render the device-specific output.

item

The MenuItem containing the properties to write to the response stream.

position

The position of the specified MenuItem in the menu hierarchy.

The RenderItem method is called from the RenderContents method to retrieve the styles and spacing attributes from the MenuItem object and apply them to a newly created hyperlink element. The menu hierarchy is traversed in the RenderContents method and will call the RenderItem method to handle the rendering for each item. Each item is rendered as a hyperlink and will inherit the properties and styles of the specified MenuItem control. The hyperlink rendered to the page is either one of the following:

  • A postback event to open or select the item.

  • A link to navigate to the target specified in the NavigateUrl property of the MenuItem control.

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: