[jQuery] Re: AutoComplete Sends Null To Server Side Function

2009-10-08 Thread MorningZ
Are you using firebug or another Developer Console like program to see what request the AutoComplete is sending out? it should be something like http://yourwebsite/Serice/AutoComplete.ashx?q=foolimit=10timestamp=1255013315384 And all values can be accessed in ASP.NET via Request.QueryString,

[jQuery] Re: AutoComplete Sends Null To Server Side Function

2009-10-08 Thread Mark Phillips
Thanks for the reply. I discovered the answer. A silly mistake actually. The AutoComplete parameter is q. ASP.NET MVC Routes needs an exact parameter name match on the server side method. I was using the word filter instead of q, so ASP.NET MVC passed in null to the server method. Mark