Hi, I have a requirement to show SharePoint Webpage through Powershell. I have designed a wpf Xaml and able to show the web browser through powershell. The Problem is that when clicking on any hyperlinks on the page it throws error "Do you want to continue Running script on this page?". I have tried many ways but unable to suppress the error. Hence, seeking your help.
<Grid xmlns:Controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <DockPanel > <WebBrowser Name="WebBrowser" DockPanel.Dock="Left" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" > </WebBrowser> </DockPanel> </Grid>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)