C#实现Winform中打开网页页面的方法
本文实例讲述了C#实现Winform中打开网页页面的方法。分享给大家供大家参考。具体实现方法如下:
1、首先比较简单的我们知道有类似的方法如下
System.Diagnostics.Process.Start("http://www.baidu.com");
2、比较灵活一点,可以定义窗口大小,我们要实现网页中脚本打开页面的方法,即window.open
那么,我们必然会想,如何调用页面的脚本呢?其实可以利用WebBrowser来实现
//连接 stringurl="http://www.baidu.com"; //定义脚本 stringscript=@"<scriptlanguage='javascript'type='text/javascript'> functionopenUrl(url){ window.open(url,'测试窗口','width=400px,height=400px,directories=true,location=false,menubar=false,resizeable=false,scrollbars=yes,toolbar=false'); }</script>"; WebBrowserwb=newWebBrowser(); wb.DocumentText=@"<html><head>"+script+"</head><body></body></html>";//定义WebBrowser中的DOM文档 wb.DocumentCompleted+=delegate { //执行脚本函数 wb.Document.InvokeScript("openUrl",newobject[]{url}); };
希望本文所述对大家的C#程序设计有所帮助。