Navigating from silverlight to hosting asp.net
My a开发者_StackOverflow社区pp consists of Home and Map pages. Home is ASP.NET. Map is hosting Silvellight.
How can I navigate from the Silverlight Map page to Home page?
Thanks, Alex
In Xaml you would use a HyperLinkButton
or if you want to do direct in code use HtmlPage.Window.Navigate
method.
Edit
In response to the comment just try it like this:-
<HyperlinkButton NavigateUri="/Home.aspx" Target="_self" Content="Home" />
精彩评论