问题描述
- 怎么获得IE当前正在浏览的网址! 唯一的 !
-
ShellWindowsClass shellWindows = new ShellWindowsClass(); foreach (InternetExplorer ie in shellWindows) { string filename = System.IO.Path.GetFileNameWithoutExtension(ie.FullName).ToLower(); if (filename.Equals("iexplore") && ie.Visible == true) { url = ie.LocationURL; } }
这个不行啊,这是所有的tab页签的网址!
我要的是正在浏览的!
时间: 2024-10-29 01:04:03