Navigate .xaml to .aspx with pop aspx page
I want to navigate by clicking on button in .xaml which open .aspx page in pop window.
I use following code:
System.Windows.Browser.HtmlPage.Window.Navigate(new Uri("mySecondPage.aspx", UriKind.Absolute));
but it does not open .aspx page in pop window.
Any suggestions ?