我一直坚持与近3时间的一部分。 搜索在互联网上,阅读博客,寻找和测试代码和例子,但一无所获。
我米使用Ajax自动完成扩展的文本框的工作从Ajax控件工具包,并希望基于用户输入的文本的问题,从数据库中免得。
对于这一点,我已经创建了一个Web服务。 在Web服务的方法是 -
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();
}
}
我打电话此WebService作为 -
<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>
纯粹和简单。 但让我吃惊的什么也没有发生在我的文本框,当我输入文本。 请指引我,好像在那里我要去错了。
在此先感谢AKHIL
PS -无错误什么也没有发生。