Tuesday
Mar182008
Silverlight Host Page QueryString
Tuesday, March 18, 2008 at 12:44PM 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.
David Yack |
3 Comments |
Reader Comments (3)
thanx for sharing.
I am using this in my project.
Thanks for adding to the:
Q's Answered That Should Have Been In The Manual
QATSHBITM
I'm sure there are people that need this that are pulliing their hair out right now...
Thanks for this bit of info...needed it and found it on this page.