Hi,
I have a problem with a command button (implementing the ICommand). I want, when pressing the specified button to redirect the user at new tab targeting a UNC path.
HtmlPage.Window.Navigate(new Uri(@"\\host\filename"), "_blank");
The problem is that browser redirects the user to the following target, besides of my intention:
http://www.hostnameoftheslapplication.com/\\host\filename
How can I achieve the correct navigation;
Thank you in advance.