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 ?
Loading
raman vermaPosted Mar 20, 2012, 5:56 AM
It is navigating to new window, but it does not open new window in pop up.
Thanks
Raman
Prasant JinagaPosted Mar 20, 2012, 3:02 AM
I have used the same to navigate to new window
HtmlPage.Window.Navigate(new Uri("http://reportserverprod/Reports/Pages/Report.aspx?ItemPath=%2fETL+Reports%2fUnder+Development%2fETLJobExecutionReport"), "_blank");
It worked.
Thanks,
Prasant