ASP Menu Controls and Query Strings
-
Hey Guys, I'me having a difficult time with a Menu control which is bound to a site map. We have a website where we allow the user to go along several paths via different instances of the browser, while logged in with a single session. To get around this we pass a single querystring value around to identify where each window is, a transaction id for instance. I'm having a difficult time figuring out how to append that dynamic querystring value value to the end of the navigation url attached to each menu item of a sitemap bound menu control. We tried just some basic tests of hooking up the onprerender event and using something like this: menuItem.NavigateUrl += "?Test =" + Request.QueryString["Test"]; But the query string object doesn't seem to survive multiple post backs. Any ideas would be greatly appreciated, Thanks, Ryan