Problem with WebBrowser

1

I have a problem trying to open a page made in Java from a device that is on my local network.

Code:

namespace RFIDIsaiv._1
{
    public partial class WebConf : Form
    {
        public WebConf()
        {
            InitializeComponent();
        }

        private void WebConf_Load(object sender, EventArgs e)
        {
            webBrowser1.Navigate(new Uri("http://172.16.2.253:3161/index.html"));
        }

    }
}
    
asked by sehonisai 28.03.2017 в 20:24
source

1 answer

0

Try ignoring the errors generated by the webControl :

webBrowser1.ScriptErrorsSuppressed = true;

Maybe with this, I'll let you visualize the website within the control.

    
answered by 28.03.2017 в 22:25