模拟百度搜索引擎

简单代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace 搜索引擎
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnSearch_Click(object sender, EventArgs e)
        {
            string link = "http://www.baidu.com/s?wd={0}";
            link = string.Format(link,txtSerch.Text.Trim());

            webShow.Url = new Uri(link);
        }



    }
}

模拟百度搜索引擎

相关文章:

  • 2021-06-30
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
  • 2021-10-23
  • 2021-05-11
  • 2021-06-18
  • 2021-12-20
猜你喜欢
  • 2022-01-02
  • 2021-07-22
  • 2021-08-05
  • 2021-06-26
  • 2021-07-25
  • 2022-12-23
  • 2021-12-05
相关资源
相似解决方案