| Author: Priya 05 Sep 2008 | Member Level: Silver | Rating: Points: 2 |
How you add the images in the nodes?
Do something like this:
Dim AddToTreeView As New TreeNode With AddToTReeview .Text = "Test" .Value = "Test" .ImageUrl = ="~/your imagepath/imagename.gif" End With TreeView1.Nodes.Add(AddToTReeview)
|
| Author: Ashish Shah 05 Sep 2008 | Member Level: Gold | Rating: Points: 1 |
Image URL property is not availabel for tree node..
|