TreeView
Controls Suite 4.5 |
| Overview |
| Features |
| Reference Book |
| Live Demos |
| | Populating with Data |
| | Appearance |
| | Behavior |
| | Programming |
| | Application scenarios |
| | | Update Panel |
|
Most of the time, all you need to do is to add main dll library to your web application and write two lines of code on the WebForm:
- Copy the APNSoftControls.dll assembly into the Bin directory of your web application.
- Add the following line of code to the top of your page:
<%@ Register TagPrefix="APNSoft" Namespace="APNSoft.WebControls" Assembly="APNSoftControls" %>
- Add the following line of code anywhere within your page to embed the TreeView:
<APNSoft:APNSoftTreeView id="myTreeView" runat="server" />
For more information about adding controls to an ASP.NET Web Page, see this page.
|