我在asp.net 4.0(vs2010)工作。我正在尝试实现AutoCompleteExtender ajax控件。起初我尝试使用页面方法,但由于我在用户控件中有扩展器,我不能使用此方法。我花了几天时间研究并确定我需要使用支持Ajax的WCF服务。所以我这样做了。我脱离了我的应用程序并创建了一个测试应用程序,模仿我正在尝试做的事情并且它有效。我把控件放在页面上,指向服务并瞧,它会激活事件并且工作得很好。因此,我将代码移植到我的主应用程序中进行必要的更改,但它不起作用。通过不起作用我的意思是它不会在服务中触发事件。我怀疑问题是ServicePath,但我尝试过很多很多不同的路径,似乎没什么用。 以下是控件的代码:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div style="float: left">
<asp:Label runat="server">Site Id:</asp:Label><br />
<asp:TextBox ID="txtSiteId" runat="server" AutoPostBack="True" OnTextChanged="TextChangedEvent"></asp:TextBox>
</div>
<div style="float: left; width: 200px; padding-left: 20px; margin-right: 5px">
<asp:Label runat="server">Entered Site Id's:</asp:Label><br />
<asp:Repeater ID="rptSiteIds" runat="server" OnItemCommand="rptSiteIds_ItemCommand">
<ItemTemplate>
<asp:LinkButton id="lnkRemove" Width="50" runat="server" Text="remove" CommandName="remove"></asp:LinkButton>
<asp:Label ID="lblItem" runat="server" Text='<%# Eval("Item") %>'></asp:Label>
</ItemTemplate>
<SeparatorTemplate>
<br>
</SeparatorTemplate>
</asp:Repeater>
</div>
<Controls:ConfirmationModal runat="server" ID="MaxSiteIdConfirmation" ModalType="Alert" OnOkClicked="ConfirmationOk_Clicked"
Title="Site Id Validation" Message="Too many site id's"
Width="300" />
<ajaxToolkit:AutoCompleteExtender
runat="server"
ID="AutoCompleteExtender"
TargetControlID="txtSiteId"
CompletionSetCount="10"
UseContextKey="True"
ServicePath="~\DataServices\WebDataServices.svc"
ServiceMethod="GetCompletionList" />
</ContentTemplate>
以下是服务代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;
using System.Text;
namespace Web.Internal.DataServices
{
[ServiceContract(Namespace = "WebDataServices")]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class WebDataServices
{
// To use HTTP GET, add [WebGet] attribute. (Default ResponseFormat is WebMessageFormat.Json)
// To create an operation that returns XML,
// add [WebGet(ResponseFormat=WebMessageFormat.Xml)],
// and include the following line in the operation body:
// WebOperationContext.Current.OutgoingResponse.ContentType = "text/xml";
[OperationContract]
public void DoWork()
{
// Add your operation implementation here
return;
}
// Add more operations here and mark them with [OperationContract]
[OperationContract]
public string[] GetCompletionList(string prefixText, int count)
{
//return names;
String[] autoCompleteWordList = (from s in CreateList()
where s.Contains(prefixText)
select s).Take(count).ToArray();
return autoCompleteWordList;
}
private string[] CreateList()
{
using (UnitOfWork uow = new UnitOfWork("DataService"))
{
return new ServiceDetailsBusiness(uow).GetDistinctIds().ToArray();
}
}
}
}
任何帮助都将不胜感激。
答案 0 :(得分:0)
你需要做几件事:
您的服务方法需要使用以下属性进行修饰:
[System.Web.Services.WebMethod()]
[System.Web.Script.Services.ScriptMethod()]
更新您的OperationContract属性,如下所示:
[OperationContract WebInvoke(Method="POST", ResponseFormat = WebMessageFormat.Json)]
在方法中的return autoCompleteWordList
语句之前添加以下代码段。
if (WebOperationContext.Current != null)
WebOperationContext.Current.OutgoingResponse.ContentType = "application/json";
此外,请确保您可以从Web浏览器正确执行Web服务调用,并且所有元数据信息都能正确显示。您是否已将任何EndPoint信息添加到web.config文件中?
如果有问题,请告诉我。