To get the selected nodes you can use the CheckedNodes property of the TreeView control:
if(myTreeView.CheckedNodes.Count > 0)
{
foreach (TreeNode node in LinksTreeView.CheckedNodes)
{
Response.Write(node.Text + "<br>");
}
}
/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT
CornerstoneMy Blog, ASP.Net 2.0 etc