jQuery:SP.NET Autocomplete Textbox Using jQuery, JSON and AJAX

来源:https://www.cnblogs.com/geovindu/archive/2018/02/02/8405259.html
-Advertisement-
Play Games

.net 4.0 ...


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="jQueryAutocomplete.aspx.cs" Inherits="VipWinValidation.jQueryAutocomplete" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>編輯管理員</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0,user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
 <link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" rel="Stylesheet" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#<% =txtCountry.ClientID%>").autocomplete({
  source: function( request, response ) {
     $.ajax({
       url: "LoadCountry.ashx",
       type: "POST",
       dataType: "json",
       data: {term: request.term},
       success: function(data) {
         response(data);
      }
     });
   } 
 });
  });
</script>

</head>
<body>
    <form id="form1" runat="server">
    <div>
             Country :
        <asp:TextBox ID="txtCountry" runat="server">
        </asp:TextBox>
    </div>
    </form>
</body>
</html>

  

/// <summary>
    /// $codebehindclassname$ 的摘要說明
    /// 
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class LoadCountry : IHttpHandler
    {
        /// <summary>
        /// 
        /// </summary>
        /// <param name="context"></param>
        public void ProcessRequest(HttpContext context)
        {
            HttpRequest request = context.Request;
            HttpResponse response = context.Response;

            System.Collections.Specialized.NameValueCollection forms = context.Request.Form;
            string strOperation = forms.Get("term"); //
            List<string> li = Country(strOperation);
            JavaScriptSerializer JS = new JavaScriptSerializer();
            string sf = JS.Serialize(li);
            context.Response.Write(sf);
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        private List<string> Country(string input)
        {
            //Get the countries list from database, for this example I am creating sample output
            //return GetCountriesfromDB(input);
            List<string> li = new List<string>();
            foreach (string s in GetCountries())
            {
                string st = s.ToLower();
                if (st.Contains(input.ToLower()))
                {
                    li.Add(s);
                }
            }
            //Linq
            //return GetCountries().FindAll(item => item.ToLower().Contains(input.ToLower()));
            return li;

        }
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        private List<string> GetCountries()
        {
            List<string> CountryInformation = new List<string>();
            CountryInformation.Add("India");
            CountryInformation.Add("United States");
            CountryInformation.Add("United Kingdom");
            CountryInformation.Add("Canada");
            CountryInformation.Add("South Korea");
            CountryInformation.Add("France");
            CountryInformation.Add("Mexico");
            CountryInformation.Add("Russia");
            CountryInformation.Add("Australia");
            CountryInformation.Add("Turkey");
            CountryInformation.Add("Kenya");
            CountryInformation.Add("New Zealand");
            CountryInformation.Add("塗聚文");
            CountryInformation.Add("塗年生");
            CountryInformation.Add("江西省");
            CountryInformation.Add("江蘇省");
            CountryInformation.Add("浙江省");
            return CountryInformation;
        }
        /// <summary>
        /// 
        /// </summary>
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }

  .net 4.0

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="jQueryAutocomplete.aspx.cs" Inherits="DuCms.Web.jQueryAutocomplete" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>編輯管理員</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0,user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
 <link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" rel="Stylesheet" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script type="text/javascript" language="javascript">
    $(document).ready(function () {
        $("#<% =txtCountry.ClientID%>").autocomplete({
            source: function (request, response) {
                $.ajax({
                    type: "POST",
                    contentType: "application/json; charset=utf-8",
                    url: "jQueryAutocomplete.aspx/LoadCountry",
                    data: "{input:'" + request.term + "'}",
                    dataType: "json",
                    success: function (output) {
                        response(output.d);
                    },
                    error: function (errormsg) {
                        alert(errormsg.responseText);
                    }
                });
            }
        });
    });
</script>   
</head>
<body>
    <form id="form1" runat="server">
    <div>
             Country :
        <asp:TextBox ID="txtCountry" runat="server">
        </asp:TextBox>
    </div>
    </form>
</body>
</html>

  

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Services;

namespace DuCms.Web
{

    /// <summary>
    /// 
    /// </summary>
    public partial class jQueryAutocomplete : System.Web.UI.Page
    {

        /// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        protected void Page_Load(object sender, EventArgs e)
        {

        }
        [WebMethod]
        public static List<string> LoadCountry(string input)
        {
            List<string> li = new List<string>();
            //Get the countries list from database, for this example I am creating sample output 
            //return GetCountriesfromDB(input);
            li = GetCountries().FindAll(item => item.ToLower().Contains(input.ToLower()));
            return li;

        }
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public static List<string> GetCountries()
        {
            List<string> CountryInformation = new List<string>();
            CountryInformation.Add("India");
            CountryInformation.Add("United States");
            CountryInformation.Add("United Kingdom");
            CountryInformation.Add("Canada");
            CountryInformation.Add("South Korea");
            CountryInformation.Add("France");
            CountryInformation.Add("Mexico");
            CountryInformation.Add("Russia");
            CountryInformation.Add("Australia");
            CountryInformation.Add("Turkey");
            CountryInformation.Add("Kenya");
            CountryInformation.Add("New Zealand");
            CountryInformation.Add("塗聚文");
            CountryInformation.Add("塗年生");
            CountryInformation.Add("江西省");
            CountryInformation.Add("江蘇省");
            CountryInformation.Add("浙江省");
            return CountryInformation;
        }
    }
}

  


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • jQuery通過選擇器來完成節點的查找: 1、基本選擇器: ①通用/所有的選擇器:$("*") //使用*號來表示。 ②:標簽選擇器:$("標簽名(div)")//使用標簽名字來定位 ③:id選擇器:$("#id") ④:類選擇器:$(".class") ⑤:群組選擇器(並集):$("table,t ...
  • 最近應為業務需求需要開發一個任務調度後臺,實現一個甘特圖( 類似上學時候的課程表,‘時間/課程/代課老師’ 轉換為: “時間/任務/執行人'”)。參考圖片: 每一行的00:00到24:00部分的 <div class="tr-right draggable ui-widget-content"> 是 ...
  • 最近正在複習,緊張地準備幾天後的筆試,然後剛好看到這個地方。 block:塊級元素,會換行,如div,p,h1~h6,table這些,可以設置寬高; inline:行內元素,不換行,擠在一行顯示,如span,a,i,em,strong,mark,input,button之類,不能設置寬高。 inli ...
  • 前言 “哈?要搞3D?” “恩,之後一個項目要建造一棟樓,要靠你了少年!” 於是我默默的打開了 webgl新手入門手冊 http://www.hewebgl.com/article/getarticle/27 後來,我成功的完成了這個這個3d樓層。http://wisdom.pppppc.com/h ...
  • 寫在前面 ,學好css,需要長期的推敲和積累 ,細節是不斷完善的,逐漸形成自己的風格 讓自己的css更加接近優雅. 下麵來總結一些我覺得比較好的css代碼風格 : 1. 一般網頁中的背景 用背景時 設置為行內樣式 style="background-image: url(img/01.jpg)"; ...
  • 原材料知識點:hover html: css: ...
  • 未完待續...... ECMAScript 6.0(簡稱ES6)是JavaScript語言的下一代標準,已經在2015年6月正式發佈了。它的目標,是使得JavaScript語言可以用來編寫複雜的大型應用程式,成為企業級開發語言。各大瀏覽器的最新版本,隨著時間的推移,支持度已經越來越高了,ES6的大部 ...
  • 周末閑暇,分享一下自己理解的js閉包原理,雖然平時用的少,但是也必須掌握的。 我們做前端的應該都瞭解 Javascript 中的GC機制(垃圾回收機制),如果一個對象不再被引用,那麼這個對象就會被 GC 回收,否則這個對象一直會保存在記憶體中。 我們看下下麵這個簡單的demo,非常簡單,但是能基本說明 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...