I have a silverlight project and a ASP.net Project in the solution. there are different views in my silverlight project. If i want to show a particular view from that how can i do that. Every time its default to MainPage.xaml.
Share
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.
Silverlight uses URL bookmarks to make it’s navigation systems work.
In Visual studio create a new Business Application Project and take a look at the way it maps hyperlink bookmark URLs to views.
You can then have similar URLs on your website to start the Silverlight application with a specific page showing.
Please note that Silverlight apps, like Flash, exist only for the life of the actual HTML page you are on. Bookmarks do not cause the current page (and therefore Silverlight Application) to reload, hence being used for Silverlight navigation.