storing bread crumb state after postback
-
Hi, after all the searches I managed to create a bread crumb using the link http://www.codeguru.com/vb/vb\_internet/aspnet/article.php/c6851 but the bread crumb information gets lost on postback. I dont know how to store the information in page level so I could maintain it. could someone please give me some direction as to how I can solve it.
-
Hi, after all the searches I managed to create a bread crumb using the link http://www.codeguru.com/vb/vb\_internet/aspnet/article.php/c6851 but the bread crumb information gets lost on postback. I dont know how to store the information in page level so I could maintain it. could someone please give me some direction as to how I can solve it.
My idea would be to have all the breadcrumb values & logic in a separate class(if it isnt) and decouple it from UI element. then store the object of ur values & logic class in say viewstate/session and then on postbacks repopulate the UI elements with the stored values. Or, just use sitemappath if u are using asp.net