如何在我的c#asp.net应用程序中使用jquery实现textbox auto建议?

时间:2012-07-29 02:36:57

标签: c# jquery asp.net

我想在我的c#asp.net应用程序中实现jquery文本框自动建议,目的是搜索employees.Now我在我的应用程序中使用ajax auto建议但是当数据超过5000万时似乎很慢。有人请帮助我。如果不想使用索引编制更快速的大量数据,请与我分享。

3 个答案:

答案 0 :(得分:4)

下面给出jQuery自动搜索详细信息:将此代码放在.aspx文件中。这里txtSearchBox是搜索框名称。

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>AutoComplete Box with jQuery</title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js"></script>  
<script type="text/javascript">
    $(document).ready(function() {
        SearchText();
    });
    function SearchText() {
        $("#txtSearch").autocomplete({
            source: function(request, response) {
                $.ajax({
                    type: "POST",
                    contentType: "application/json; charset=utf-8",
                    url: "Default.aspx/GetAutoCompleteData",
                    data: "{'username':'" + document.getElementById('txtSearch').value + "'}",
                    dataType: "json",
                    success: function(data) {
                        response(data.d);
                    },
                    error: function(result) {
                        alert("Error");
                    }
                });
            }
        });
    }
</script>
   </head>
   <body>
   <form id="form1" runat="server">
   <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
    <asp:UpdatePanel>
        <ContentTemplate>
            <div class="demo">
        <div class="ui-widget">
            <label for="tbAuto">Enter UserName: </label>
            <asp:TextBox ID="txtSearch" runat="server" AutoCompleteType="Search"> </asp:TextBox>
        </div>
</div>
        </ContentTemplate>
    </asp:UpdatePanel>

</form>
</body>
</html>

现在.cs文件详细信息:

public partial class _Default : Page 
{
  protected void Page_Load(object sender, EventArgs e)
   {

   }
[WebMethod]

public static List<string> GetAutoCompleteData(string username)
{
 List<string> result = new List<string>();

 using (SqlConnection con = new SqlConnection("Data Source=devserver;Initial     Catalog=Catalog;Persist Security Info=True;User ID=userName;Password=Password"))
{
 using (SqlCommand cmd = new SqlCommand("select (strEmployeeName + ',' + strEmployeeCode) as username from tblEmployee where strEmployeeName LIKE '%'+@SearchText+'%' ", con))
{
 con.Open();
 cmd.Parameters.AddWithValue("@SearchText", username);
 SqlDataReader dr = cmd.ExecuteReader();
 while (dr.Read())
{
 result.Add(dr["username"].ToString());
}
 return result;
}
}
}  
}

如果您希望可以使用对象数据源,例如:在这种情况下,您的对象方法应该返回List类型数据。

[WebMethod]
public static List<string> GetAutoCompleteData(string strSearchKey)
{
    AutoSearch_BLL objAutoSearch_BLL = new AutoSearch_BLL();
    List<string> result = new List<string>();
    result = objAutoSearch_BLL.AutoSearchEmployeesData(strSearchKey);
    return result;
}

答案 1 :(得分:1)

jQuery UI提供了一个很好的自动完成实现,文档建议它可以用来从非常大的数据库中提取自动完成建议

  

您可以从本地和/或远程源提取数据:本地适用于小型数据集(如50个条目的地址簿),大型数据集需要远程数据集,例如数百或数百万的数据库可供选择的条目。

http://jqueryui.com/demos/autocomplete/

请注意,如果您向浏览器返回 50K建议(而不是从50K可能的池中提取建议),那么您做错了(这是很多数据要推送到浏览器线)。

答案 2 :(得分:1)

实施jQuery UI autocomplete很简单,因为

$(function(){
     $( "#txtEmployee" ).autocomplete({
        source: "employees.aspx",
        minLength: 2,
        select: function( event, ui ) {
            log( ui.item ?
                "Selected: " + ui.item.value + " aka " + ui.item.id :
                "Nothing selected, input was " + this.value );
        }
    });
});

jQuery UI自动完成supports数据的一些客户端caching。这肯定会提高搜索速度。此外,您可以考虑在应用程序中实施缓存层,其中存储员工列表,以便自动完成不会每次查询您的数据库。相反,它将从缓存层获取数据。