Gets or sets the target window or frame in which to display the Web page content that is linked to when a hyperlink in a System.Web.UI.WebControls.BulletedList control is clicked.
Documentation for this section has not yet been entered.
Values must begin with a letter in the range of A through Z (case-insensitive), except for the special values that are listed in the following table, which begin with an underscore.
_blank |
Renders the content in a new window without frames. |
_parent |
Renders the content in the immediate frame-set 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. |
Check your browser documentation to determine if the _search value is supported. For example, Microsoft Internet Explorer 5.0 and later support the _search target value.
Use the BulletedList.Target property to specify the frame or window that displays the Web page that is linked to when a hyperlink in a System.Web.UI.WebControls.BulletedList control is clicked. To display the content of the list items as hyperlinks in a System.Web.UI.WebControls.BulletedList control, set the System.Web.UI.WebControls.BulletedListDisplayMode property to the value BulletedListDisplayMode.HyperLink. Then, set the ListItem.Value property of each list item to the URL of the Web page to navigate to.
If the BulletedList.Target property is not set, the browser or window with focus refreshes when the hyperlink is clicked.
The BulletedList.Target property renders as a target attribute. The target attribute on anchor elements is not allowed in the XHTML 1.1 document type definition. Do not set the BulletedList.Target property if the rendered output for the System.Web.UI.WebControls.BulletedList must be XHTML 1.1 compliant. For more information, refer to the topic ASP.NET and XHTML Compliance.
When creating accessible Web pages, it is strongly recommended you avoid using the BulletedList.Target property to target another window. For more information, see ASP.NET Accessibility.
The value of this property is stored in view state.