Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. greggiepoo

    Adding a treeview node index to a querystring

    Sorry, just realized that in function GetNavigatedNodeIndex, you don't need to check Request.Url.AbsolutePath, since Request.Url.AbsoluteUri contains the path. So the correct code is: private string GetNavigatedNodeIndex( TreeNodeCollection tnc ) { ... if ( tn.NavigateUrl.Length > 0...
  2. greggiepoo

    Adding a treeview node index to a querystring

    Hi mrathi and others! I've had the same problem, and I think I may have figured out a solution WITHOUT using querystrings. I created a recursive function to solve the problem. The code is below: private string GetNavigatedNodeIndex( TreeNodeCollection tnc ) { foreach ( TreeNode tn in tnc )...

Part and Inventory Search

Back
Top