zoukankan      html  css  js  c++  java
  • 获取所有IE当前浏览的Url

    using  System;
    using  System.Windows.Forms;
    using  SHDocVw;
    namespace  WindowsApplication35
    {
        
    public   partial   class  Form1 : Form
        
    {
            
    public  Form1()
            
    {
                InitializeComponent();
            }

            
    private   void  Form1_Load( object  sender, EventArgs e)
            
    {
                ShellWindowsClass shellWindows 
    =   new  ShellWindowsClass();
                
    foreach  (InternetExplorer ie  in  shellWindows)
                
    {
                    
    string  filename  =  System.IO.Path.GetFileNameWithoutExtension(ie.FullName).ToLower();

                    
    if  (filename.Equals( " iexplore " ))
                    
    {
                        Console.WriteLine(ie.LocationURL);
                    }

                }

            }


             
        }

    }
     
  • 相关阅读:
    第一个gulp程序
    r.js打包
    吃饭途中的回忆
    IE下script标签的readyState属性
    CSS 选择器
    html的base标签
    迷你MVVM框架 avalonjs 1.3.9发布
    2014年的年终总结
    Visual Studio2017 数据库架构比较
    MVC开发中自定义返回类型
  • 原文地址:https://www.cnblogs.com/cl1024cl/p/6204975.html
Copyright © 2011-2022 走看看