AutoComplete AJAX Control with Ajax.NET Professional
Michael Schwarz have finished today a more complex auto complete textbox you can use in you Ajax.NET Professional web application. The control can be added on the server like other HtmlControls:
AjaxAutoComplete textBox1 = new AjaxAutoComplete();
textBox1.ID = "hans1";
placeHolder1.Controls.Add(textBox1);
You have to specify where you want to get the data back. There is a delegate that must point to a public Ajax.NET method, i.e. like this:
textBox1.OnAutoComplete = new
AjaxAutoComplete.AutoCompleteHandler(this.OnAutoComplete);
Later there will be feature to override the render method to include more colums. The auto complete control is working with Internet Explorer and Firefox, other browsers have to be tested. You can download the source code at the Google group.


Subscribe to AJAX Magazine's feed