Non-hyperlinked text in a treeview

J

John Bankhead

I have a simple treeview (four levels deep) that I am building manually when
the page is loaded. I am trying to figure out how to take the treeview out
of navigation mode. That is to say that the text for a node should NOT be a
hyperlink. According to all of the docs I have found, setting the
NavigateURL to an empty string will do this for me. This does not seem to
work.

suggestions?

My Original Code:
TreeNode _root = new TreeNode("Fault Code Filter");
tree.Nodes.Add(_root);

Tried this:
TreeNode _root = new TreeNode("Fault Code Filter","-1","","","");

And this
TreeNode _root = new TreeNode("Fault Code Filter","-1","","","");
_root.NavigateUrl = "";

Also this:
TreeNode _root = new TreeNode("Fault Code Filter","-1","","","");
_root.NavigateUrl = null;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top