资源简介

Ajax 实现下拉列表 感应 模糊查询,如同baidu搜索感应,样式可以自己编写.

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.xml.Linq;

namespace Dayuan.Web.Admin.GroupRate
{
    public partial class ajaxUserName : System.Web.UI.Page
    {
        
        protected void Page_Load(object sender EventArgs e)
        {
            if (Request.QueryString[“txt_search“] != null)
            {
             string userName = Request.QueryString[“txt_search“].ToString();
             DataTable dt=  Dayuan.DBUtility.CunstomSQL.GetDataSet(“select top 15 * from Dy_Admin where UserName like ‘%“ + userName + “%‘“).Tables[0];
             string ss = ““;
             if (dt.Rows.Count > 0)
             {
                 for (int i = 0; i < dt.Rows.Count; i++)
                 {
                     ss += dt.Rows[i][“UserName“].ToString() + “@“;
                 }
             }
             ss = ss.TrimEnd(‘@‘);
             Response.Write(ss);
             Response.End();
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        482  2011-03-22 13:35  Ajax模糊搜索\ajaxUserName.aspx

     文件       1220  2011-03-22 13:35  Ajax模糊搜索\ajaxUserName.aspx.cs

     文件        853  2011-03-22 13:35  Ajax模糊搜索\ajaxUserName.aspx.designer.cs

     文件      72174  2011-03-22 13:35  Ajax模糊搜索\jquery-1.4.2.min.js

     文件       2985  2011-03-22 13:35  Ajax模糊搜索\页面源文件.txt

     目录          0  2011-03-22 13:35  Ajax模糊搜索

----------- ---------  ---------- -----  ----

                77714                    6


评论

共有 条评论