Published on 2005-11-11 07:36:42
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);
Member of the PHP Magazine Network, Copyright (C) 2005-2008 phpmagazine.net All Rights Reserved