How can I pass query string variables with NavigationService.Navigate?
- by Mike Hildner
Greetings,
Searched for this, but no luck.
I'm attempting to pass query string variables (and then retrieve them) in my Silverlight 4 app. First I tried this
this.NavigationService.Navigate(new Uri("/LoanProductionRegion?Elvis=Alive&ImHungry=true", UriKind.Relative));
But HtmlPage.Document.QueryString doesn't pick them up because they…