在过去的 3 个小时里,我一直被困在其中。在互联网上搜索、阅读博客、查看和测试代码和示例,但一无所获。
我正在使用文本框上的 Ajax Control Toolkit 中的 Ajax Auto Complete Extender,并希望根据用户输入的文本从数据库中生成最少的问题。
为此,我创建了一个网络服务。网络服务中的方法是 -
namespace CeteraQMS
{
/// <summary>
/// Summary description for SearchIssues
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class SearchIssues : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod]
public string[] GetCompletionList(string prefixText, int count)
{
DataSet ds = null;
DataTable dt = null;
OracleConnection conn = null;
StringBuilder sb = new StringBuilder();
try
{
conn = new OracleConnection("Data Source=advbniit; User ID=usr; Password=abc providerName=System.Data.OracleClient");
sb.Append("select issueno from cet_sepcet where issueno like '");
sb.Append(prefixText);
sb.Append("%'");
OracleDataAdapter daRes = new OracleDataAdapter(sb.ToString(), conn);
ds = new DataSet();
daRes.Fill(ds);
dt = ds.Tables[0];
}
catch (Exception exc)
{
}
finally
{
if (conn.State == ConnectionState.Open)
{
conn.Close();
}
}
List<string> IssueList = new List<string>();
for (int i = 0; i < dt.DataSet.Tables[0].Rows.Count; i++)
{
IssueList.Add(dt.DataSet.Tables[0].Rows[i][0].ToString());
}
return IssueList.ToArray();
}
}
我将此网络服务称为 -
<asp:TextBox ID="txtIssueNo" runat="server" Width="130px" Style="margin-left: 5px"
onkeypress="return allowDigit(this);" MaxLength="7"></asp:TextBox>
<asp:AutoCompleteExtender ID="AutoCompleteExtender1" EnableCaching="true" BehaviorID="AutoCompleteCities"
TargetControlID="txtIssueNo" ServiceMethod="GetCompletionList" ServicePath="SearchIssues.asmx"
MinimumPrefixLength="1" CompletionSetCount="10" runat="server" FirstRowSelected="true">
</asp:AutoCompleteExtender>
纯粹而简单。但令我惊讶的是,当我在文本框中输入文本时,什么都没有发生。请引导我,好像我哪里出错了。
在此先感谢阿基尔
PS - 没有错误什么都没有发生。