Sorry if I wasn't clear. What I'm not sure of is how do I detect the node
that was clicked.
For example, given the following tree:
A
a1
a2
B
b1
b2
b3
If "b2" is clicked within the TreeView control, what event do I use to
determine it was b2 and not -- say -- "a1"?
"Jeffrey Palermo [MCP]" <
http://dotnetjunkies.com/weblog/jpalermo> wrote in
message news:
[email protected]...
Tom,
Your question is quite short, so I will assume that you are looking for
some .Net code to do this. Check out the Response.Redirect() method. If
you want to do a client redirect, then you can set the treeview node to have
a javascript onclick="location.href={newurl}".
Best regards,
Jeffrey Palermo