<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>[How Do I:] Use the ASP.NET AJAX AutoComplete Control</title><link>http://www.asp.net</link><pubDate>Tue, 19 Aug 2008 18:21:08 GMT</pubDate><generator>umbraco</generator><description>Comments for [How Do I:] Use the ASP.NET AJAX AutoComplete Control</description><language>en</language><atom:link href="http://www.asp.net/rss/comments/33575" rel="self" type="application/rss+xml" /><item><title>Comment Posted by jorge08</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Sun, 11 May 2008 20:05:35 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001121</guid><description><![CDATA[ <p>Hi Joe, maybe you have a sample about this control using a database?</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/jorge08.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by warrenvt</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Mon, 02 Jun 2008 13:50:01 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001122</guid><description><![CDATA[ <p>Hi Joe,</p> <p> &#160; I have an external web service that has been created for me to allow me access to a db. How can I use the AJAX to connect to this web service?</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/warrenvt.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by Gabriel82</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Sat, 07 Jun 2008 08:44:22 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001123</guid><description><![CDATA[ <p>Jorge08 this is a small example with Access Database:</p> <p> If (count = 0) Then</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;count = 10</p> <p> &#160; &#160; &#160; &#160;End If</p> <p> &#160; &#160; &#160; &#160;Dim strConn As String = &quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&quot; &amp; Server.MapPath(&quot;App_Data/ExpImpdb.mdb&quot;) &amp; &quot;;&quot;</p> <p> &#160; &#160; &#160; &#160;Dim adp As New System.Data.OleDb.OleDbDataAdapter(&quot;select * from cars WHERE RecMerk Like &#39;&quot; &amp; prefixText &amp; &quot;%&#39; &quot;, strConn)</p> <p> &#160; &#160; &#160; &#160;Dim dt As New System.Data.DataTable</p> <p> &#160; &#160; &#160; &#160;adp.Fill(dt)</p> <p> &#160; &#160; &#160; &#160;Dim items As New List(Of String)</p> <p> &#160; &#160; &#160; &#160;For i As Integer = 0 To dt.Rows.Count</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;Dim datafile</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;datafile = UCase(dt.Rows(i).Item(&quot;RecMerk&quot;))</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;i += 1</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;items.Add(datafile)</p> <p> &#160; &#160; &#160; &#160;Next</p> <p> &#160; &#160; &#160; &#160;Return items.ToArray()</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/Gabriel82.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by Sabeltann</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Fri, 20 Jun 2008 07:38:01 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001124</guid><description><![CDATA[ <p>Thanks Joe! I&#39;ve wanted to try making an AJAX control like this for a while, but always thought it&#39;d be more complex - you made it look easy.</p> <p>From a beginner&#39;s viewpoint it wasn&#39;t obvious to me that when creating the webmethod, you can change the webmethod name as you like but the parameter names _must_ be prefixText and count (but maybe that&#39;s me being dumb)</p> <p>It seems pretty easy to hook this up to a database using LINQ. If it&#39;s of any help, here&#39;s my code to query product names in Northwind, (assumes you&#39;ve already made the linq to northwind class)</p> <p>[WebMethod]</p> <p>public string[] GetCompletionList(string prefixText, int count)</p> <p>{</p> <p> &#160;// OBS! In real world, initialize this someplace else</p> <p> &#160;NorthwindDataContext Db = new NorthwindDataContext();</p> <p> &#160;var matches = from p in Db.Products</p> <p> &#160;where p.ProductName.StartsWith(prefixText)</p> <p> &#160;select p.ProductName;</p> <p> &#160;return matches.ToArray&lt;string&gt;();</p> <p>}</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/Sabeltann.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by sudheshna</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Wed, 09 Jul 2008 06:59:56 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001125</guid><description><![CDATA[ <p>Hi Joe,</p> <p>I tried the code and is working fine but when I implemented URL rewriting its displaying a js error &#39;Syntax error&#39; and the auto complete is not working its displaying results as undefined. If I remove the code </p> <p>&lt;asp:ScriptManager ID=&quot;ScriptManager1&quot; runat=&quot;server&quot;&gt;</p> <p> &#160; &#160;&lt;Services&gt;</p> <p> &#160; &#160; &#160; &#160;&lt;asp:ServiceReference Path=&quot;AutoComplete.asmx&quot; /&gt;</p> <p> &#160; &#160;&lt;/Services&gt;</p> <p>&lt;/asp:ScriptManager&gt;</p> <p>there is no js error. I&#39;m using C# and the auto complete text box is filled from DB. How can I solve this issue. Please help.</p> <p>Thanks</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/sudheshna.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by Scorpiogenie</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Fri, 11 Jul 2008 22:40:18 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001126</guid><description><![CDATA[ <p>Hi Joe, I just wanted to say thanks. I’m interning with Goldman Sachs- Tech Division. Your videos have saved my life on numerous occasions. You are appreciated.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/Scorpiogenie.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by Jagarm</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Thu, 17 Jul 2008 14:01:54 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001127</guid><description><![CDATA[ <p>Hello Joe,</p> <p>I have downloaded your VB code and try to run it on my computer, it does work in firefox but doesn&#39;t work in IE6 and up. The example about the autocomplete that is on Ajax Toolkit live page works with all platform. Any suggestion here?</p> <p>Thanks</p> <p>Jagar,</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/Jagarm.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dummies2</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Fri, 18 Jul 2008 14:24:50 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001128</guid><description><![CDATA[ <p>when i tried to use this example and get info out of my database it keeps telling me that my variable.toarray is wrong and gives me an error of type&#39;1-dimensional array of string cannot be converted to string??? why is that?</p> <p>here is my code please help.</p> <p>Dim dtst As DataTable</p> <p> &#160; &#160; &#160; &#160;Dim sqlconnection As SqlConnection = New SqlConnection(&quot;connectionstring&quot;)</p> <p> &#160; &#160; &#160; &#160;Dim objcmd As SqlCommand = New SqlCommand(&quot;select namefrom students where name like &#39;&quot; + prefixTex + &quot;%&#39; &quot;, sqlconnection)</p> <p> &#160; &#160; &#160; &#160;sqlconnection.Open()</p> <p> &#160; &#160; &#160; &#160;Dim sqladpt As SqlDataAdapter = New SqlDataAdapter</p> <p> &#160; &#160; &#160; &#160;sqladpt.SelectCommand = objcmd</p> <p> &#160; &#160; &#160; &#160;sqladpt.Fill(dtst)</p> <p> &#160; &#160; &#160; &#160;Dim cntname As List(Of String)</p> <p> &#160; &#160; &#160; &#160;For i As Integer = 0 To dtst.Rows.Count</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;Dim datafile</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;datafile = UCase(dtst.Rows(i).Item(&quot;description&quot;))</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;i += 1</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;cntname.Add(datafile)</p> <p> &#160; &#160; &#160; &#160;Next</p> <p> &#160; &#160; &#160; &#160;Return cntname.ToArray</p> <p>thank you in advnace</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/dummies2.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dummies2</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Fri, 18 Jul 2008 14:26:02 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001129</guid><description><![CDATA[ <p>there should be a space between name and form but the error is from cntname.toarray.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/dummies2.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dummies2</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Fri, 18 Jul 2008 14:27:13 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001130</guid><description><![CDATA[ <p>sorry i was typing too fast the line </p> <p>dtatfile=ucase(dtst.rows(i).item(&quot;description&quot;)</p> <p>should be</p> <p>dtatfile=ucase(dtst.rows(i).item(&quot;name&quot;)</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/dummies2.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dummies2</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Fri, 18 Jul 2008 15:13:24 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001131</guid><description><![CDATA[ <p>got it there was a mistake on the public function (prefixtex as string) as string() but the textbox doesnt work. it doesn&#39;t autocomplete</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/dummies2.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by mdasraful.islam</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Mon, 21 Jul 2008 01:34:17 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001132</guid><description><![CDATA[ <p>hi,</p> <p> how can i show data in autocomplete list from northwind database in C#.I am a novice programmer.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/mdasraful.islam.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by gopikrishnag</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Mon, 21 Jul 2008 07:47:34 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001133</guid><description><![CDATA[ <p>Hi ,</p> <p>Video is excellent. i want key/value pair, for example, if i select country name and value stored in the hidden field.</p> <p>please let me how can i achive this.</p> <p>Thanks</p> <p>Gopi</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/gopikrishnag.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by mdasraful.islam</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Mon, 21 Jul 2008 23:04:49 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001134</guid><description><![CDATA[ <p>Hi Joe, maybe you have a sample about this control using a database from C# code? Please help me.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/mdasraful.islam.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by bill32</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Tue, 22 Jul 2008 11:34:18 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001135</guid><description><![CDATA[ <p>Hi,</p> <p>I ported the code to my WebApp and it works as long as I enter the full url including port number (&lt;a rel=&quot;nofollow&quot; target=&quot;_new&quot; href=&quot;http://localhost:6534/AutoComplete.asmx&quot;&gt;localhost/AutoComplete.asmx&lt;/a&gt;) as the ServicePath Attribute for the AutoComplete Control. Is it possible to let the webservice run on a specified port number, or how did you manage to ommit the portnumber in your examples?</p> <p>bill</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/bill32.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by bioscan</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Wed, 23 Jul 2008 07:00:32 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001136</guid><description><![CDATA[ <p>hey gopikrishnag,</p> <p>i had the same issue with key/value.</p> <p>look here, it&#39;s easy:</p> <p>&lt;a rel=&quot;nofollow&quot; target=&quot;_new&quot; href=&quot;http://blogs.msdn.com/phaniraj/archive/2007/06/19/how-to-use-a-key-value-pair-in-your-autocompleteextender.aspx&quot;&gt;blogs.msdn.com/.../how-to-use-a-key-value-pair-in-your-autocompleteextender.aspx&lt;/a&gt;</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/bioscan.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by grahams</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Wed, 06 Aug 2008 10:28:29 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001137</guid><description><![CDATA[ <p>I&#39;ve tried this using Visual Studio 2005 (with the AJAX 1.0 extensions for ASP.net 2.0 installed on my server). Browsing with IE6.0.2 sp2.</p> <p>I&#39;ve followed the steps in the video, but I get an annoyingly vague JavaScript error on my .aspx page saying, simply that:</p> <p>&#39;Sys&#39; is undefined.</p> <p>When I view the source of the .aspx page, I find that the Sys assembly is indeed required, and it seems to initialise my ScriptManager, which contains the details of the WebService I&#39;ve created. It looks like it&#39;s fundamental to the method, but the CDATA section seems to be auto-generated.</p> <p>//&lt;![CDATA[</p> <p>Sys.WebForms.PageRequestManager._initialize(&#39;ScriptManager1 &#39;, document.getElementById(&#39;form1&#39;));</p> <p>Sys.WebForms.PageRequestManager.getInstance()._updateContro ls([], [], [], 90);</p> <p>//]]&gt;</p> <p>So my question is, how can I satisfy this auto-generated dependency on Sys.WebForms.PageRequestManager to make my page load without errors, and therefore be able to AutoComplete the text box?</p> <p>graham</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/grahams.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by cv_vikram</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Wed, 06 Aug 2008 14:46:30 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001138</guid><description><![CDATA[ <p>Very good tutorial.....thanks</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/cv_vikram.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by viswesh</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Thu, 07 Aug 2008 03:48:28 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001139</guid><description><![CDATA[ <p>hi joe,i have done what you said in the video,but i am not geting output.webservice is running fine, is it getting values .but in .aspx i am not getting the output ...what shiould i do now??.......thanx in advance.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/viswesh.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by JRLiem</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Mon, 11 Aug 2008 02:28:13 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001140</guid><description><![CDATA[ <p>The video is excellent.</p> <p>Is it possible to add an argument in the web service method?</p> <p>How to pass value to the additional argument?</p> <p>thank you</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/JRLiem.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by umayxa3</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Mon, 11 Aug 2008 17:02:14 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001141</guid><description><![CDATA[ <p>I finally got my SubSonic/Stored Procedure call to work with the Ajax AutoComplete:</p> <p> &#160; &#160;public string[] GetCompletionList(string prefixText, int count)</p> <p> &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160;if (count == 0)</p> <p> &#160; &#160; &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;count = 10;</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;List&lt;string&gt; items = new List&lt;string&gt;(count);</p> <p> &#160; &#160; &#160; &#160;SubSonic.StoredProcedure sp = new SubSonic.StoredProcedure(&quot;GetAllInfo&quot;);</p> <p> &#160; &#160; &#160; &#160;sp.Command.AddParameter(&quot;@pIn&quot;, &quot;RIGHT&quot;);</p> <p> &#160; &#160; &#160; &#160;sp.Command.AddParameter(&quot;@sSearch&quot;, prefixText);</p> <p> &#160; &#160; &#160; &#160;DataSet ds = sp.GetDataSet();</p> <p> &#160; &#160; &#160; &#160;foreach (DataRow dr in ds.Tables[0].Rows)</p> <p> &#160; &#160; &#160; &#160;{</p> <p> &#160; &#160; &#160; &#160; &#160; &#160;items.Add(dr[0].ToString());</p> <p> &#160; &#160; &#160; &#160;}</p> <p> &#160; &#160; &#160; &#160;return items.ToArray();</p> <p> &#160; &#160;}</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/umayxa3.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by ybechar</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Tue, 12 Aug 2008 15:51:44 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001142</guid><description><![CDATA[ <p>Hi Joe,</p> <p>Great demo. Of course I got some problems with the whole AutoComplete extender.</p> <p>I am try to use it in two places: </p> <p>1. A master page and </p> <p>2. on a web user control</p> <p>I have followed your example step by step. &#160;When I create a new project and run it, it does run fine.</p> <p>The problem is when I try to implement it on my &quot;real&quot; project.</p> <p>On the bottom of the browser (IE 7) I get the &quot;warning message&quot; when I double click on it it give me the following message:</p> <p>&quot;Error: Sys.ArgumentUndefineException: Value cannot be undefined. Paramenter Name: type&quot;</p> <p>Any ideas what is going on in here???? </p> <p>I would appreciate any help since I have been trying to add this functionality for a while now.....</p> <p>Thanks in advance</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/ybechar.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dmrlady</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Thu, 14 Aug 2008 16:04:47 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001143</guid><description><![CDATA[ <p>Hi I try this program and it works fine. Accept when I am using a database file with information. The field that I am trying to load is a sql field with nvar(9) but it has only numbers. When I do Return items.ToArray only the items that do not start with zeros are loaded to the array. I look at the field before it is added to the array and it has the leading zero, but it does not get returned. I want all fields loaded even the ones with the zeros. Please help. &#160;Diana</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/dmrlady.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by kbob</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Sun, 17 Aug 2008 07:42:53 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001144</guid><description><![CDATA[ <p>Hi</p> <p>Im trying to use this control on a webpart (user control) using a static method [webmethod], for some reason this does not work, the event never triggers. Is there a known issue about this extender and a user control or an issue implementing the method of the extender in a non webservise method???</p> <p>Thanks in advance</p> <p>bob </p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/kbob.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by sushil8687</title><link>http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-autocomplete-control</link><pubDate>Tue, 19 Aug 2008 18:21:08 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-000000001145</guid><description><![CDATA[ <p>I have a textbox where users are required to enter values starting with zero. The autocomplete does not match values read with leading zeros, is it a bug or do i have to do some settings. </p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/sushil8687.jpg?forceidenticon=false&amp;dt=635045112600000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item></channel></rss>