Hi,
I have some problem with the new release of AJAX 1.0 beta...
My test scenario is one .aspx page like this: <form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" MinimumPrefixLength="2"
ServiceMethod="GetSuggestions" ServicePath="~/WebServiceTest.asmx" TargetControlID="TextBox1" />
</div>
</form>
the WebService is:
using System;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;
using Microsoft.Web.Script.Services;
/// <summary>
/// Summary description for WebServiceTest
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class WebServiceTest : System.Web.Services.WebService {
public WebServiceTest () {
//Uncomment the following line if using designed components
//InitializeComponent();
}
[ScriptMethod]
public string[] GetSuggestions(string prefixText, int count)
{
string[] r = new string[count];
for (int i = 0; i < r.Length; i++)
r[i] = string.Format("{0} ({1})", prefixText, i);
return r;
}
} the Microsoft.Web.Preview.dll is in the BIN folder,
the web.config is correctly configured (I read the .doc guide "from ATLAS to AJAX 1.0 beta"),
but... the AutoCompleteExtender doesn't apper in the page when I digit something in the TextBox. No JS errors, no compilation errors.. where am I making mistake? 
Thanks for every suggestion in advantage 
Ps. with the july CTP I didn't have problems.. it was all ok...