Click here to Skip to main content
15,867,308 members
Articles / Web Development / ASP.NET

ASTreeView - Free ASP.NET TreeView Control

Rate me:
Please Sign up or sign in to vote.
4.91/5 (119 votes)
19 Feb 2014CPOL7 min read 2.3M   21.2K   245   478
A full functional treeview control for ASP.NET, including drag and drop, Ajax loading, context menu, dropdown treeview.

Nuget Package 

ASTreeView is now on Nuget.org. Please install using(for .Net Framework 4.0 and above): 

PM> Install-Package ASTreeView  

or if you target to .Net Framework 2.0/3.5, using: 

PM> Install-Package ASTreeView.Legacy  

Introduction

ASTreeView is a full functional treeview control for ASP.NET with drag drop, Ajax loading, context menu, XML import/export, checkbox, selection, adding/editing/deleting nodes with Ajax.

Background

ASTreeView is developed on .NET Framework 2.0. The demo project is a Visual Studio 2005 project. ASTreeView is compatible with ASP.NET 2.0 and above.

ASTreeView is FREE! That means you can use it anywhere!

I host the project on Google Code: please download the assembly and the demo, check out the demo, and use ASTreeView in your project!

Updated

I registered a domain name for astreeview: http://www.astreeview.com.

Using the Code

Here are functionalities ASTreeView supports:

1. Drag & Drop

User can drag & drop nodes within the tree or even among trees!

astreeview_intro_1

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo1.aspx.

ASP.NET
<ct:ASTreeView ID="astvMyTree"
   runat="server"
   BasePath="~/Javascript/astreeview/"
   DataTableRootNodeValue="0"
   EnableRoot="false"
   EnableNodeSelection="false"
   EnableCheckbox="true"
   EnableDragDrop="true"
   EnableTreeLines="true"
   EnableNodeIcon="true"
   EnableCustomizedNodeIcon="true"
   EnableContextMenu="true"
   EnableDebugMode="false"
   EnableContextMenuAdd="false" />
In Code Behind
C#
protected void btnToggleDragDrop_Click( object sender, EventArgs e )
{
	this.astvMyTree.EnableDragDrop = !this.astvMyTree.EnableDragDrop;
}
 
protected void btnToggleTreeLines_Click( object sender, EventArgs e )
{
	this.astvMyTree.EnableTreeLines = !this.astvMyTree.EnableTreeLines;
}
 
protected void btnToggleNodeIcon_Click( object sender, EventArgs e )
{
	this.astvMyTree.EnableNodeIcon = !this.astvMyTree.EnableNodeIcon;
}
 
protected void btnToggleCheckbox_Click( object sender, EventArgs e )
{
	this.astvMyTree.EnableCheckbox = !this.astvMyTree.EnableCheckbox;
}
 
protected void btnToggleDefaultNodeIcon_Click( object sender, EventArgs e )
{
	this.astvMyTree.EnableCustomizedNodeIcon = 
			!this.astvMyTree.EnableCustomizedNodeIcon;
}
 
protected void btnToggleContextMenu_Click( object sender, EventArgs e )
{
	this.astvMyTree.EnableContextMenu = !this.astvMyTree.EnableContextMenu;
}

ASTreeView Demo

2. Tree Lines

Enable/Disable tree line is available.

astreeview_intro_2

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo1.aspx.

3. Tree Node Icons

The developer can specify customized icon for each node, use default node icon, or, disable node icon.

astreeview_intro_3

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo1.aspx.

4. Checkbox

Three-state (checked, unchecked, half-checked) checkbox is available.

astreeview_intro_4

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo1.aspx.

5. Tree Node Context Menu

A user can use context menu to edit/delete node by right clicking the node. Ajax edit/delete is supported.

astreeview_intro_5

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo3.aspx.

6. Multi-data Source Supported

A developer can bind different types of data source (currently astreeview supports datatable and XML datasource). Or developer can create ASTreeViewNode and append to the tree in the code.

XML

astreeview_intro_6

DataTable

astreeview_intro_6-2

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo4.aspx.

7. Server-side Event Supported

OnSelectedNodeChanged and OnCheckedNodeChanged are available.

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo2.aspx.

Configuration
ASP.NET
<ct:ASTreeView ID="astvMyTree"
  runat="server"
  BasePath="~/Javascript/astreeview/"
  DataTableRootNodeValue="0"
  EnableRoot="false"
  EnableNodeSelection="true"
  EnableCheckbox="true"
  EnableDragDrop="false"
  EnableTreeLines="true"
  EnableNodeIcon="true"
  EnableCustomizedNodeIcon="false"
  AutoPostBack="true"
  EnableDebugMode="false"
  EnableContextMenu="false"
  OnOnCheckedNodeChanged="astvMyTree_OnCheckedNodeChanged"
  OnOnSelectedNodeChanged="astvMyTree_OnSelectedNodeChanged" />
In Code Behind
C#
protected void astvMyTree_OnCheckedNodeChanged
	( object src, ASTreeViewNodeCheckedEventArgs e )
{
	string toConsole = string.Format( ">>OnCheckedNodeChanged checked: 
		text:{0} value:{1} state:{2}", e.NodeText, e.NodeValue, 
		e.CheckedState.ToString() );
	this.divConsole.InnerHtml += ( toConsole + "<br />" );
}
 
protected void astvMyTree_OnSelectedNodeChanged( object src, 
				ASTreeViewNodeSelectedEventArgs e )
{
	string toConsole = string.Format( ">>OnSelectedNodeChanged selected: 
		text:{0} value:{1}", e.NodeText, e.NodeValue );
	this.divConsole.InnerHtml += ( toConsole + "<br />" );
}
 
protected void btnGetSelectedNode_Click( object sender, EventArgs e )
{
	string toConsole = string.Empty;
 
	ASTreeViewNode selectedNode = astvMyTree.GetSelectedNode();
	if( selectedNode == null )
		toConsole = ">>no node selected.";
	else
		toConsole = string.Format( ">>node selected: text:{0} value:{1}", 
			selectedNode.NodeText, selectedNode.NodeValue );
 
	this.divConsole.InnerHtml += ( toConsole + "<br />" );
}
 
protected void btnGetCheckedNodes_Click( object sender, EventArgs e )
{
	List<ASTreeViewNode> checkedNodes = this.astvMyTree.GetCheckedNodes
			( cbIncludeHalfChecked.Checked );
	StringBuilder sb = new StringBuilder();
 
	foreach( ASTreeViewNode node in checkedNodes )
		sb.Append( string.Format( "[text:{0}, value:{1}]<br />", 
			node.NodeText, node.NodeValue ) );
 
	this.divConsole.InnerHtml += ( string.Format( ">>nodes checked: 
		<div style='padding-left:20px;'>{0}</div>", sb.ToString() ) );
}

8. Ajax Nodes Loading Supported

Having thousands of nodes? No problem, ASTreeView supports loading nodes using Ajax.

astreeview_intro_8

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo5.aspx.

Configuration
ASP.NET
<ct:ASTreeView ID="astvMyTree" 
	runat="server"
	BasePath="~/Javascript/astreeview/"
	DataTableRootNodeValue="0"
	EnableRoot="false" 
	EnableNodeSelection="true" 
	EnableCheckbox="true" 
	EnableDragDrop="false" 
	EnableTreeLines="true"
	EnableNodeIcon="true"
	EnableCustomizedNodeIcon="false"
	EnableContextMenu="true"
	EnableDebugMode="false" 
	EnableAjaxOnEditDelete="true"
	AddNodeProvider="~/ASTreeViewDemo5.aspx"
	AdditionalAddRequestParameters="{'t2':'ajaxAdd'}"
	EditNodeProvider="~/ASTreeViewRenameNodeHandler.aspx"
	DeleteNodeProvider="~/ASTreeViewDeleteNodeProvider.aspx"
	LoadNodesProvider="~/ASTreeViewDemo5.aspx"
	AdditionalLoadNodesRequestParameters="{'t1':'ajaxLoad'}"/>
In Code Behind
C#
protected override void Render( HtmlTextWriter writer )
{
	if( Request.QueryString["t1"] == "ajaxLoad" )
	{
		string virtualParentKey = Request.QueryString["virtualParentKey"];
 
		string para = string.Empty;// "= 1";
		if( virtualParentKey == null )
			para = " is NULL";
		else
			para = "=" + virtualParentKey;
 
		string sql = @"SELECT p1.[ProductID] as 
		    ProductID, p1.[ProductName] as ProductName, 
		    p1.[ParentID] as ParentID, p3.childNodesCount as ChildNodesCount
FROM [Products] p1
LEFT OUTER JOIN 
(
	SELECT COUNT(*) AS childNodesCount , p2.[ParentID] AS pId 
	FROM [Products] p2
	GROUP BY p2.[ParentID]
) p3
ON p1.[ProductID] = p3.pId
WHERE p1.[ParentID] " + para;
 
DataTable dt = OleDbHelper.ExecuteDataset( base.NorthWindConnectionString, 
	CommandType.Text, sql ).Tables[0];
 
ASTreeViewNode root = new ASTreeViewNode( "root" );
 
foreach( DataRow dr in dt.Rows )
{
	string productName = dr["ProductName"].ToString();
	string productId = dr["ProductID"].ToString();
	string parentId = dr["ParentID"].ToString();
	int childNodesCount = 0;
	if( !string.IsNullOrEmpty( dr["ChildNodesCount"].ToString() ) )
		childNodesCount = int.Parse( dr["ChildNodesCount"].ToString() );
 
	ASTreeViewLinkNode node = new ASTreeViewLinkNode( productName, productId );
	node.VirtualNodesCount = childNodesCount;
	node.VirtualParentKey = productId;
	node.IsVirtualNode = childNodesCount > 0;
	node.NavigateUrl = "#";
	node.AddtionalAttributes.Add( new KeyValuePair<string, string>
			( "onclick", "return false;" ) );
 
	root.AppendChild( node );
}
 
HtmlGenericControl ulRoot = new HtmlGenericControl( "ul" );
astvMyTree.TreeViewHelper.ConvertTree( ulRoot, root, false );
foreach( Control c in ulRoot.Controls )
	c.RenderControl( writer );
}
else if( Request.QueryString["t2"] == "ajaxAdd" )
{
	string addNodeText = Request.QueryString["addNodeText"];
	int parentNodeValue = int.Parse( Request.QueryString["parentNodeValue"] );
 
	string maxSql = "select max( productId ) from products";
	int max = (int)OleDbHelper.ExecuteScalar
		( base.NorthWindConnectionString, CommandType.Text, maxSql );
	int newId = max + 1;
 
	string sql = string.Format( @"INSERT INTO products
	( productid, Discontinued, productname, parentid ) values( {0} ,0, '{1}', {2})"
	, max + 1, addNodeText.Replace( "'", "''" ), parentNodeValue );
 
	int i = OleDbHelper.ExecuteNonQuery
		( base.NorthWindConnectionString, CommandType.Text, sql );
 
	ASTreeViewNode root = new ASTreeViewNode( "root" );
 
	ASTreeViewLinkNode node = new ASTreeViewLinkNode
				( addNodeText, newId.ToString() );
	node.NavigateUrl = "#";
	node.AddtionalAttributes.Add( new KeyValuePair<string, 
			string>( "onclick", "return false;" ) );
 
	root.AppendChild( node );
 
	HtmlGenericControl ulRoot = new HtmlGenericControl( "ul" );
	astvMyTree.TreeViewHelper.ConvertTree( ulRoot, root, false );
	foreach( Control c in ulRoot.Controls )
		c.RenderControl( writer );
}
else
	base.Render( writer );			
}

9. Multi-type Tree Node

A tree node can be a hyper-link or LinkButton to perform postback.

astreeview_intro_9

See live demo

10. ASDropDownTree

ASDropDownTree inherits ASTreeView, looks like a DropDownList, multi-selection and single-selection are available by the control's configuration.

astreeview_intro_10

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo6.aspx.

11. Drag & Drop Between (or Even Among) Trees

Nodes can be dragged and dropped across trees.

astreeview_intro_11

See live demo: http://www.astreeview.com/ASTreeViewDemo/ASTreeViewDemo7.aspx.

12. Extending ContextMenu

Now it is possible to add your customized ContextMenu Items to the menu. A screenshot:

image

To add your customized menu, it’s easy:

C#
/// <summary>
/// initial controls, bind you events etc. here
/// </summary>
private void InitializeComponent()
{
    this.astvMyTree.ContextMenu.MenuItems.Add( new ASContextMenuItem( 
        "Custom Menu 1", "alert('current value:' + " 
        + this.astvMyTree.ContextMenuClientID
        + ".getSelectedItem().parentNode.getAttribute('treeNodeValue')" 
        + ");return false;", "otherevent" ) );
 
    this.astvMyTree.ContextMenu.MenuItems.Add( new ASContextMenuItem( 
        "Custom Menu 2", "alert('current text:' + " 
        + this.astvMyTree.ContextMenuClientID 
        + ".getSelectedItem().innerHTML" 
        + ");return false;", "otherevent" ) );
}

Online demo: http://www.astreeview.com/astreeviewdemo/ASTreeViewDemo3.aspx.

13. Extending ContextMenu

In version 1.3.0, the end user can open the folder by clicking on the node text. It is useful when only the leaf nodes are clickable, for example, bookmarks.

image

To enable this feature, just set the “EnableParentNodeExpand” property of ASTreeView.

14. Customize Node with HTML

NodeText can be HTML:

C#
 this.astvMyTree.RootNode
.AppendChild( new ASTreeViewLinkNode
	( "Accor <a href='http://www.astreeview.com' target='_blank'>see demo</a>"
, "Accor"
, "http://www.accor.com", "_self", "Goto Accor", "~/Images/demoIcons/accor.gif" )
	.AppendChild( new ASTreeViewLinkNode( "Accor Services", 
	"Accor Services", http://www.accorservices.com, 
	"_self", "Goto Accor Services", "~/Images/demoIcons/accorservices.gif" ) )
	.AppendChild( new ASTreeViewLinkNode( "Accor Hospitality", 
	"Accor Hospitality", "http://www.accorhotels.com", "_self", 
	"Goto Accor Hospitality", "~/Images/demoIcons/accorhospitality.gif" ) )
);

15. Themes

ASTreeView now supports themes! A developer can easily create his own theme for the treeview. Check out the demo.

Screenshot:

image

16. Right-To-Left Support

ASTreeView now supports RTL display, thank Mojtaba Vali for the suggestion! Also check out the demo.

image

17. HTML as TreeNodeText Supported

In the new version, you may use HTML as tree node text, not only plain text.

image

18. Multiline Edit Mode Supported

Set the EnableMultiLineEdit property to enable this feature, the default is false.

image

19. Drag and Drop Complete Event Now is Available.

I added a new client side event after drag and drop. to use:

C#
<script type="text/javascript">
     //parameter must be "elem"
     function dndHandler( elem ){
         document.getElementById( "<%=divConsole.ClientID %>" ).innerHTML
                    += ( ">>node dragged:"
                         + elem.getAttribute("treeNodeValue")
                         + "<br />" );
     }
 </script>

and then set the OnNodeDragAndDropCompleteScript="dndHandler( elem )", visit demo.

Screenshot:

image

20. New Property for ASTreeViewNode – EnableChildren

Set this property to false can disable dragging other nodes to the current node as child nodes. Please refer to sample 1 to see the effect.

21. Virtical Drag and Drop Nodes

If you use ASTreeView as a list, you can set EnableHorizontalLock to true, then the end user can only move the nodes up and down, not left nor right.

Screenshot:

image

22. Fix Drag and Drop Depth

If you want the end user to just move the node within the same level as its original level, you may set the property EnableFixedDepthDragDrop=true, then the nodes can only be dragged and dropped to the same level as its original level, visit online demo.

23. Add OnNodeDragAndDropStartScript Event

A new event OnNodeDragAndDropStartScript is now available for developers to execute some JS when the end user start to drag nodes. Here’s a usage sample:

Add a property for astreeview:

JavaScript
OnNodeDragAndDropStartScript="dndStartHandler( elem )"

The JS function to handle start drag drop:

JavaScript
//parameter must be "elem" 
    
functiondndStartHandler( elem ){   
    document.getElementById("").innerHTML   
    += (">>drag started. [Node]"+ elem.getAttribute("treeNodeValue")   
    +" [Parent]:"+ elem.parentNode.parentNode.getAttribute("treeNodeValue")   
    +"
"); 
    
}

24. New node type: TextNode

The content of tree nodes is now more flexible. You can add HTML, JavaScript in the new node type – TextNode:

Screenshot:

image

25. Supports Customized JavaScript Handler

For example, if the developer wants to cancel add node action if server returns some specified condition. He can:

  1. Set EnableOnNodeAddedScriptReturn="true"
  2. Set OnNodeAddedScript="addedHandler(elem)"
  3. Write the addedHandler:
    JavaScript
    function addedHandler( elem ){
        var message = '';
        var result = true;
    	    
        var aTag = elem.getElementsByTagName('A')[0];
    	    
        if( aTag.getAttribute('addfailed') == 'true' ){
            alert( aTag.innerHTML );
            return false;
        }
        else{
            message = (">>add completed. [Node]" 
            + elem.getAttribute("treeNodeValue") + "<br />" );
        }
        document.getElementById("").innerHTML 
        += message;
        return result;
    }

In this case, when the server side returns the node with addfailed in the anchor, the astreeview will cancel the add action.

The same approach can be applied on Edit, Delete and DragDrop.

Some screenshots:

image

image

26. New API added (1.5.8)

New API added in 1.5.8:

  • SelectNode – select a node by node value
  • CheckNodes – check nodes by node values
  • UnCheckNodes - uncheck nodes by node values
  • FindByValue – find node by node value, just like the FindControl in WebControl
  • FindByText – find node by node text

27. Enable/Disable feature in ASDropDownTreeView

Developers now can set Enabled property of ASDropDownTreeView to enable/disable it.

The configuration in aspx:

C#
this.astvMyTree.Enabled = false;

28. EnableOpenClose property for ASTreeViewNode

It’s now possible to remove the plus/minus icon in front of the tree node. This is for some situation that some nodes are needed to always be open. Just simply set the EnableOpenClose to false to remove the open/close icon:

C#
someNode.EnableOpenClose = false;

29. [IMPORTANT]Drag and Drop API change in 1.5.8

In the new version, I changed the OnNodeDragAndDropCompleteScript to OnNodeDragAndDropCompletingScript and added a new API called OnNodeDragAndDropCompletedScript.

And the difference between the new APIs:

In OnNodeDragAndDropCompleting, you CANNOT get the new siblings of the current node because the drag and drop hasn’t finished yet. But you can cancel the drag and drop at this time.

In OnNodeDragAndDropCompleted, you CANNOT cancel the drag and drop because the node has been appended to the new node. But at this time, you can get the new parent, new sibling of the current node.

If you are going to update to 1.5.8 and you’re using the on node drag and drop event, please update your code, change the OnNodeDragAndDropComplete to OnNodeDragAndDropCompleting to keep the same behavior.

Support

In order to manage request in a good manner, I setup a mantis system for submitting requests and bugs. Please find the Mantis link in http://www.astreeview.com/astreeviewdemo/Support.aspx.

Points of Interest

I spent two or three months in development, and the ASTreeView is finally finished. Now I would like to introduce it to you. Your feedback is appreciated!

History

The current version of ASTreeView is 1.5.8, visit for details.

In the release 1.5.8, several new features are added:

  1. New APIs
  2. Enable/Disable feature in ASDropDownTreeView
  3. EnableOpenClose property for ASTreeViewNode
  4. [IMPORTANT] Drag and Drop API change

In the release 1.5.5, several new features are added:

  1. Added new API for check, select and find nodes: SelectNode, CheckNodes, UnCheckNodes, FindByValue, FindByText
  2. Added new node type:TextNode
  3. Added EnableDragDropOnIcon property
  4. Supports customized JavaScript handler
  5. Improved CSS for ASTreeView
  6. Improved ViewState Management
  7. Strong Named Assembly

In the release 1.4.0, several new features are added:

  1. Vertical Drag and Drop Nodes
  2. Fix Drag and Drop depth
  3. Add OnNodeDragAndDropStartScript Event
  4. Several bugs fixed

In the release 1.3.0, several new features are added:

  1. Themes
  2. Right-To-Left support
  3. HTML as TreeNodeText supported
  4. Support escape edit/add input
  5. Multiline Edit Mode supported
  6. Drag and drop complete event now is available
  7. New property for ASTreeViewNode EnableChildren

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Honeywell
China China
ASTreeView, the best FREE treeview control for ASP.NET.

Comments and Discussions

 
QuestionHow to identify CasuesValidation property for ASTreeview control? Pin
honey4bee8-Mar-11 19:26
honey4bee8-Mar-11 19:26 
QuestionHow can i refill Treeview?, i used ASTreeView Control Pin
honey4bee15-Feb-11 19:06
honey4bee15-Feb-11 19:06 
QuestionIn ASTreeView Control How i know the node value when right click on that node? Pin
honey4bee14-Feb-11 19:28
honey4bee14-Feb-11 19:28 
AnswerRe: In ASTreeView Control How i know the node value when right click on that node? Pin
varunjeeri20-Feb-11 20:10
varunjeeri20-Feb-11 20:10 
QuestionHow to add a new node Pin
LeeLouis3-Feb-11 22:06
LeeLouis3-Feb-11 22:06 
Questionadding a context menu item like "AddFile" in ASTreeView context menu, how that event is fired Pin
honey4bee2-Feb-11 19:35
honey4bee2-Feb-11 19:35 
QuestionIs ASTreeView control 508 Compliant/Accessibility Standards Compliant? Pin
NR from Pune14-Dec-10 18:15
NR from Pune14-Dec-10 18:15 
AnswerRe: Is ASTreeView control 508 Compliant/Accessibility Standards Compliant? Pin
JIN Weijie14-Dec-10 19:02
JIN Weijie14-Dec-10 19:02 
QuestionUnable to bind Data to ASDropDownTreeView which is added dynamicalaly to my webform Pin
varun.jeeri23-Nov-10 19:46
varun.jeeri23-Nov-10 19:46 
GeneralMy vote of 5 Pin
Fred Griggs19-Nov-10 21:03
Fred Griggs19-Nov-10 21:03 
QuestionNodeDepth property always = -1? Pin
jcexited17-Nov-10 5:16
jcexited17-Nov-10 5:16 
AnswerRe: NodeDepth property always = -1? Pin
cxxx18-Nov-11 10:52
cxxx18-Nov-11 10:52 
GeneralThank you for such useful control :) Pin
ChopLegChopy15-Nov-10 1:36
ChopLegChopy15-Nov-10 1:36 
Questionhow can i do payment and which kind help you provide to me Pin
ravishah3124-Oct-10 19:29
ravishah3124-Oct-10 19:29 
AnswerRe: how can i do payment and which kind help you provide to me Pin
JIN Weijie24-Oct-10 19:38
JIN Weijie24-Oct-10 19:38 
Generali want to load load server path is it possible?get list of folders and files from server Pin
ravishah3123-Oct-10 2:40
ravishah3123-Oct-10 2:40 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
JIN Weijie23-Oct-10 2:44
JIN Weijie23-Oct-10 2:44 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
ravishah3123-Oct-10 3:00
ravishah3123-Oct-10 3:00 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
JIN Weijie23-Oct-10 3:02
JIN Weijie23-Oct-10 3:02 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
ravishah3123-Oct-10 3:04
ravishah3123-Oct-10 3:04 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
JIN Weijie23-Oct-10 3:05
JIN Weijie23-Oct-10 3:05 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
ravishah3123-Oct-10 3:08
ravishah3123-Oct-10 3:08 
GeneralRe: i want to load load server path is it possible?get list of folders and files from server Pin
ravishah3123-Oct-10 3:13
ravishah3123-Oct-10 3:13 
QuestionWhen adding a new node in the ASTreeView Control Pin
ferdware13-Oct-10 17:51
ferdware13-Oct-10 17:51 
AnswerRe: When adding a new node in the ASTreeView Control Pin
JIN Weijie13-Oct-10 18:22
JIN Weijie13-Oct-10 18:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.