主頁(yè) > 知識(shí)庫(kù) > 不使用web服務(wù)(Service)實(shí)現(xiàn)文本框自動(dòng)完成擴(kuò)展

不使用web服務(wù)(Service)實(shí)現(xiàn)文本框自動(dòng)完成擴(kuò)展

熱門(mén)標(biāo)簽:百度地圖標(biāo)注點(diǎn)擊事件 內(nèi)蒙古智能電銷(xiāo)機(jī)器人哪家強(qiáng) 怎樣在地圖標(biāo)注消火栓圖形 濟(jì)源人工智能電話機(jī)器人價(jià)格 山東防封電銷(xiāo)卡辦理套餐 泰州手機(jī)外呼系統(tǒng)軟件 杭州智能電話機(jī)器人 廈門(mén)四川外呼系統(tǒng) 地圖標(biāo)注位置多的錢(qián)

以前寫(xiě)Ajax 的AutoCompleteExtender功能,都需要寫(xiě)WCF Service或是Web Service數(shù)據(jù)源。但一個(gè)系統(tǒng)中,很多文本框都想使用AutoComplete的功能。我們不可能寫(xiě)很多的Service,比如一些較小的數(shù)據(jù)。我們是否有一個(gè)可替換的方法呢?這是肯定的。下面的演示,Insus.NET以不用寫(xiě)Service來(lái)實(shí)現(xiàn)文本框的AutoCompete extender功能。

首先從數(shù)據(jù)庫(kù)獲取數(shù),你可以寫(xiě)SQL語(yǔ)句,或是寫(xiě)存儲(chǔ)過(guò)程,以下是獲取域用戶信息,仿Outlook輸入收件人效果。

在[ActiveDirectoryInfo]表中的信息,是定期與域的活動(dòng)目錄同步。

復(fù)制代碼 代碼如下:

usp_ActiveDirectoryInfo_GetDisplayNameForService
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Insus.NET
-- Create date: 2013-03-28
-- Description: Get dissplay name form web service
-- =============================================
CREATE PROCEDURE [dbo].[usp_ActiveDirectoryInfo_GetDisplayNameForService]
(
@PrefixText NVARCHAR(MAX),
@Count INT
)
AS
DECLARE @W NVARCHAR(MAX) = @PrefixText + '%'
EXECUTE('SELECT TOP (' + @Count + ') [displayName] FROM [dbo].[ActiveDirectoryInfo] WHERE [displayName] LIKE ''' + @w +'''')

在邏輯層,我們寫(xiě)一個(gè)類(lèi)別,去與數(shù)據(jù)層交互:
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;

/// summary>
/// Summary description for ActiveDirectoryInfo
/// /summary>
namespace Insus.NET
{
public class ActiveDirectoryInfo
{
BusinessBase objBusinessBase = new BusinessBase();

public ActiveDirectoryInfo()
{
//
// TODO: Add constructor logic here
//
}

public DataTable GetDisplayName(string prefixText,int count)
{
Parameter[] parameter = {
new Parameter ("@PrefixText",SqlDbType.NVarChar,-1,prefixText),
new Parameter ("@Count",SqlDbType.Int,4,count)
};
return objBusinessBase.GetDataToDataSet("usp_ActiveDirectoryInfo_GetDisplayNameByPrefixText", parameter).Tables[0];
}
}
}

以上類(lèi)別中,有一個(gè)對(duì)象即是BusinessBase
把ScriptManager
復(fù)制代碼 代碼如下:

asp:ScriptManager ID="ScriptManager1" runat="server">/asp:ScriptManager>

或ToolkitScriptManager
復(fù)制代碼 代碼如下:

ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server" />

拉至網(wǎng)頁(yè)。

下圖是html與cs程序,在方法前必須兩行代碼:

復(fù)制代碼 代碼如下:

[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod]


效果:

標(biāo)簽:朝陽(yáng) 臺(tái)州 新鄉(xiāng) 百色 周口 朔州 洛陽(yáng) 喀什

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《不使用web服務(wù)(Service)實(shí)現(xiàn)文本框自動(dòng)完成擴(kuò)展》,本文關(guān)鍵詞  不,使用,web,服務(wù),Service,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《不使用web服務(wù)(Service)實(shí)現(xiàn)文本框自動(dòng)完成擴(kuò)展》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于不使用web服務(wù)(Service)實(shí)現(xiàn)文本框自動(dòng)完成擴(kuò)展的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章