I see there are similar posts on this topic but none answer my question. I am navigating to a silverlight page and I need to pass a value to the page. For security reasons, I cant use querystring.
What are the alternatives?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could simply add it to an Application Context object that can be shared between views. I use this approach in my current project e.g.
To use from a view:
So, before you navigate from one view to another simply populate relevant shared properties in the ApplicationContext object that can then be retrieved by other views.