Silverlight Host Page QueryString
One of the things you will want to do at some point is get access to the query string parameters passed to the page hosting your Silverlight application.
I had come across a few references to using HtmlPage.QueryString and that just didn't exist - so after digging around some more I came across HtmlPage.Document.QueryString - which as you can see from the image is a Dictionary<string,string> of the query string parameters.
Reader Comments (1)
thanx for sharing.
I am using this in my project.