C#与IE交互

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#与IE交互相关的知识,希望对你有一定的参考价值。

我想用C#写一个程序,来监测IE是否启动了,如果启动了,抓取网页的URL等信息!怎么做到?
我想通过WINFORM实现,通过BHO获取网页的信息,比如URL。。还可以将某些信息填到网页中的控件中,比如TEXTBOX的。。该怎么实现这个技术。。有没有C#BHO的相关代码或者实例可供参考的。。如果部通过BHO,可以通过什么其他的方法实现呢?

参考技术A //我只实现了监控IE是否打开,写了个小DEMO,供参考:)
这两天又研究了一下,做了另外一个得到ieURL的程序:)

1.监控ie是否打开,用的WinForm
调用.net中的Process类

在button的点击事件中写:
private void button1_Click(object sender, EventArgs e)

Process[] processes;
processes = System.Diagnostics.Process.GetProcesses();

foreach (Process currentProcess in processes)

if (currentProcess.ProcessName == "iexplore")

lbl_State.Text = "Is Open";
break;

else

lbl_State.Text = "Not Open";



注:lbl_State 为asp:label

2.获取IE导航栏URL,用的ConsoleApplication写的
首先,自爱reference中添加引用:选择COM选卡,找到Microsoft Internet Controls,加到Reference中。
然后就是代码了,如下:
namespace IEStateConsole

class Program

static void Main(string[] args)

SHDocVw.ShellWindows shellWindows = new SHDocVw.ShellWindowsClass();
string filename;
foreach (SHDocVw.InternetExplorer ie in shellWindows)

filename = Path.GetFileNameWithoutExtension(ie.FullName).ToLower();
if (filename.Equals("iexplore"))
Console.WriteLine("Web Site : 0", ie.LocationURL);
if (filename.Equals("explorer"))
Console.WriteLine("Hard Drive : 0", ie.LocationURL);


Console.ReadKey();



运行就可以了

希望对你有用:)
参考技术B 我也提供思路给你:
1:使用findwindow函数不停地获取当前窗口的名称,判断获得的名称字符串中是否含有浏览器村题特有关键字,如果现在我当前的浏览器标题是“C#与正交互_百度知道-360安全浏览器”这里我截取后面几个字符如果等于"360安全浏览器"的话就能判断IE打开了,至于抓取URL我也没做过这方面的程序。
2:如二楼的仁兄所述,不停地检测进程id
参考技术C asp.net

[Winform]js与webbrowser交互

摘要

目前项目中采用的方式是内嵌浏览器的方式,打开本地或者互联网上的h5页面。在开发之前做了一下调研。目前常用的在C#封装的浏览器内核中,Chromium 内核封装有Xilium.Cefglue、Cefsharp,Webkit 内核封装 Webkit.NET 、OpenWebKitSharp等。webbrowser又与电脑上的IE版本相关,兼容性不好,在win10上,排版是好的,如果拿到win7上,就会出现排版错乱的现象。当然你可以通过修改注册表,进行制定ie的版本。

js与webbrowser的交互

如果在页面上,存在一个js方法,你想通过c#的方式调用该方法,或者出传递值,你可以这样来做。

c#调用js方法

如果页面上提供了js方法,我们可以使用 InvokeScript 方法

public object InvokeScript(string scriptName)
public object InvokeScript(string scriptName,object[] args)
        private void button1_Click(object sender, EventArgs e)
        {
            HtmlDocument doc = this.webBrowser1.Document;
            doc.InvokeScript("showMsg", new[] { "Hello world" });
        }

测试

js调用c#方法

  //
        // 摘要:
        //     获取或设置一个对象,该对象可由显示在 System.Windows.Forms.WebBrowser 控件中的网页所包含的脚本代码访问。
        //
        // 返回结果:
        //     可用于脚本代码的对象。
        //
        // 异常:
        //   T:System.ArgumentException:
        //     指定的值时将此属性设置为非公共类型的实例。- 或 -指定的值时将此属性设置为不是 COM 可见类型的实例。
有关详细信息,请参阅System.Runtime.InteropServices.Marshal.IsTypeVisibleFromCom(System.Type)。
[Browsable(false)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public object ObjectForScripting { get; set; }

webbrowser通过该属性注册js调用的对象。

记得要在JSObject 类上面声明 [System.Runtime.InteropServices.ComVisible(true)] 才能使对象可见。例如在本demo中

  [System.Runtime.InteropServices.ComVisible(true)]
    public partial class Form1 : Form
    {
    ......do somthing here
     }
        private void Form1_Load(object sender, EventArgs e)
        {  
            //注册script 调用对象
            this.webBrowser1.ObjectForScripting = this;
            string exeDir = AppDomain.CurrentDomain.BaseDirectory;
            this.webBrowser1.Url = new Uri("file:///" + Path.Combine(exeDir, "www", "test.html"));          
            this.FormClosing += Form1_FormClosing;
        }

js如何使用c#方法?

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>
    <script>

        function showMsg(msg) {
            alert(msg);
        }
        window.onload = function () {
            document.getElementById("btn").onclick = function () {
                var response = window.external.GetDateTime();
                document.getElementById("msg").innerHTML = response;
            }
        }
    </script>
</head>
<body>
    <input type="button" name="name" value="获取时间" id="btn" />
    <div id="msg"></div>
</body>
</html>

测试

自定义js的alert弹窗

c# 方法

        public void ShowMsg(string msg)
        {
            MessageBox.Show(msg, "提示", MessageBoxButtons.OKCancel);
        }

js调用

  window.external.ShowMsg("自定义弹窗");

总结

webbrowser相对其它内核的浏览器,操作上比较方便,毕竟跟winform集成的比较完美。但也有它的缺点,就是跟系统IE有关系,会出现兼容性的问题,而开发最头疼的就是调ie的兼容性。

webbrowser与ie的关系可以参考这篇文章,可以通过将你的程序添加到注册表,设置webbrowser的版本。

http://www.cnblogs.com/liuzhendong/archive/2012/03/21/2410107.html

以上是关于C#与IE交互的主要内容,如果未能解决你的问题,请参考以下文章

C# 交互式窗口可以与我的代码交互吗?

使用QAxWidget调用IE组件怎么与IE进行交互

在 C# 中与网页交互

asp.net中javascript与后台c#交互

C# 实现线程内部与界面控件交互

vue3和c#怎么交互