设置IE浏览器的默认主页

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置IE浏览器的默认主页相关的知识,希望对你有一定的参考价值。

实现效果:
  技术分享图片

知识运用:
  RegistryKey类的GetValue方法

  public Object GetValue (string name , Object defaultValue)

  name : 要检索的值的名称

  defaultValue: 在name不存在时返回的值 

实现代码:

        private void Form1_Load(object sender, EventArgs e)
        {
            RegistryKey regMain = Registry.CurrentUser.CreateSubKey(@"SoftwareMicrosoftInternet ExplorerMain");
            object DPage = regMain.GetValue("Start Page","没有值");
            textBox1.Text = DPage.ToString();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            if (!string.IsNullOrEmpty(textBox2.Text))
            {
                RegistryKey regMain = Registry.CurrentUser.CreateSubKey(@"SoftwareMicrosoftInternet ExplorerMain");
                regMain.SetValue("Start Page", textBox2.Text);
                MessageBox.Show("已设置主页为:"+textBox2.Text);
            }
        }
        private void button2_Click(object sender, EventArgs e)
        {
            RegistryKey regMain = Registry.CurrentUser.CreateSubKey(@"SoftwareMicrosoftInternet ExplorerMain");
            regMain.SetValue("Start Page", "about:blank");
            MessageBox.Show("已设置主页为:"+"空白页");
        }

 



以上是关于设置IE浏览器的默认主页的主要内容,如果未能解决你的问题,请参考以下文章

google怎么设置浏览器默认主页

怎么把360安全浏览器改成windows浏览器??

WIN10:IE浏览器的默认主页以及通过链接搜索的默认引擎

Win10系统Edge浏览器怎么设置主页/自定义首页

修改IE默认页的指向

怎么通过BAT或VBS改IE的设置