Menu::Target Property
Gets or sets the target window or frame in which to display the Web page content associated with a menu item.
Assembly: System.Web (in System.Web.dll)
<asp:Menu Target="String" />
Property Value
Type: System::StringThe target window or frame in which to display the linked Web page content. The default value is an empty string (""), which refreshes the window or frame with focus.
Use the Target property to specify the window or frame in which to display the Web content linked to a menu item when that menu item is clicked. Values must begin with a letter in the range of A through Z (case-insensitive), except for certain special values that begin with an underscore, as shown in the following table.
Target value | Description |
|---|---|
_blank | Renders the content in a new window without frames. |
_parent | Renders the content in the immediate frameset parent. |
_search | Renders the content in the search pane. |
_self | Renders the content in the frame with focus. |
_top | Renders the content in the full window without frames. |
Note: |
|---|
Check your browser documentation to determine if the _search value is supported. For example, Internet Explorer versions 5.0 and above support the _search target value |
This property applies to all menu items in a Menu control. You can selectively override this property by setting the Target property of each MenuItem object directly.
Note: |
|---|
The Target property renders as a target attribute. The target attribute on anchor elements is not allowed in the XHTML 1.1 strict document type definition. Do not set the Target property if the rendered output for the HyperLink must be XHTML 1.1 compliant. For more information, refer to the topic ASP.NET and XHTML. When creating accessible Web pages, it is strongly recommended you avoid using the Target property to target another window. For more information, see ASP.NET Accessibility. |
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: