怎样在自己的网页中嵌入百度搜索功能

来源:互联网 发布:lol网络延迟多少正常 编辑:程序博客网 时间:2024/05/01 07:44

(1)*.aspx中的代码

    <asp:TextBox   ID="text1"   Runat="server"   Width="95px"   Height="22" OnTextChanged="text1_TextChanged" ></asp:TextBox>  
    <asp:Button   ID="btn"   Text="百度搜索"   Runat="server"   Width="72px"   Height="24" OnClick="btn_Click"></asp:Button> 

(2)*.aspx.cs中的代码

    protected void btn_Click(object sender, EventArgs e)
    {
        string texthere = text1.Text;
        string searchtext = "http://www.baidu.com/s?wd=" + System.Web.HttpUtility.UrlEncode(texthere, System.Text.UnicodeEncoding.GetEncoding("GB2312")).ToUpper()
        + "&cl=3";
        Response.Redirect(searchtext);
    }

(3)相关解析

百度的编码:
str = System.Web.HttpUtility.UrlEncode("中文", System.Text.UnicodeEncoding.GetEncoding("GB2312")).ToUpper() ;
百度的解码:
System.Web.HttpUtility.UrlDecode("%C3%CF%CF%DC%BB%E1", System.Text.UnicodeEncoding.GetEncoding("GB2312"));

原创粉丝点击