ComboBox |
The professional replacement for the classic ASP.NET DropDownList component. |
DataGrid |
The server control to display data in a tabular format with options of choice, sorting and editing entries. |
Include |
The server control to include a HTML files into your ASP.NET pages as Server Side Includes (SSI). |
Menu |
The server control to display both statically and dynamically created menus on your Web pages. |
Rating |
The server control to easily provide feedback on an article, blog item, product description, etc. |
TreeView |
The ASP.NET server control to display hierarchical data in a tree structure. |
|
|
How to set the URL links for the menu items.
You need to use the href and target Item's attributes - the URL and target the browser is directed to when a user clicks the Item. Full analogue with the HTML attributes.
The href attribute can include special active blocks $ComponentID$, $ItemID$ and $Rnd$. Each active block is replaced to the corresponding value. The $Rnd$ displays a random number. It can be used as an additional parameter to avoid page caching in browser.
<item title="Microsoft" href="http://www.microsoft.com" target="_blank" />
<item id="i1" title="Home" href="~/Default.aspx?ItemID=$ItemID$&Rnd=$Rnd$" />
APNSoft FAQ Manager 1.0 (38) © 2003-2024 APNSoft. All rights reserved. |
|