2

データベースから検索を作成しようとしています。ユーザーがテキスト ボックスに入力を開始すると、町のリストがテキスト ボックスの下に autocompleteextender とともに表示されます。通常の Web ページでは正常に動作しますが、コードをマスター ページに配置すると動作しません。「GetList」はイベント発火ではありません。助言がありますか?ありがとう。

マスター ページ コード:

<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Master.master.cs" Inherits="Obelo.MasterPages.Master1" %>
<%@ Register TagPrefix="asp" Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit"%>

<!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></title>
</head>
<body bgcolor="#5c5b5b">
    <form id="form1" runat="server">
         <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="Server" />
         <asp:textbox id="tbFindWhat" runat="server" Width="210px" Font-Names="Arial" 
               Font-Size="9pt" ForeColor="#FF6600" BackColor="#1E1E1E" 
               BorderColor="White" BorderStyle="Solid" BorderWidth="1px" 
               Style="padding:0 0 0 10px; margin: -2px"></asp:textbox>
         <asp:AutoCompleteExtender ID="AutoCompleteExtender1" 
               runat="server" TargetControlID="tbFindWhat" MinimumPrefixLength="1" 
               EnableCaching="true" CompletionSetCount="1" 
               CompletionInterval="1000" ServiceMethod="GetList">
         </asp:AutoCompleteExtender>
         <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
         </asp:ContentPlaceHolder>
     </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.Drawing;
using System.Data.SqlClient;
using System.Configuration;
using System.Data;

namespace MasterPage
{
    public partial class Master1 : System.Web.UI.MasterPage
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        [System.Web.Script.Services.ScriptMethod()]
        [System.Web.Services.WebMethod]
        public static List<string> GetList(string prefixText)
        {
            SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["BusinessConnectionString"].ToString());
            con.Open();
            SqlCommand cmd = new SqlCommand("select * from tblTowns where Name like @Name+'%'", con);
            cmd.Parameters.AddWithValue("@Name", prefixText);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataTable dt = new DataTable();
            da.Fill(dt);
            List<string> CountyNames = new List<string>();
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                CountyNames.Add(dt.Rows[i][1].ToString());
            }
            con.Close();
            return CountyNames;
        }
    }
}
4

2 に答える 2

1

ドキュメントによると、サービス メソッドの署名は次のようにする必要があります。

 public string[] GetCompletionList(string prefixText, int count, string contextKey) 
 { 
    ... 
 }

ここでAutoComplete エクステンダーのプロパティを確認してください。

于 2012-10-15T10:13:43.313 に答える
0

私はたくさん検索しましたが、すべてのページに webmethod を配置すると機能します。悪い修正ですが、機能します

于 2013-04-25T20:40:29.883 に答える