I want to use Jquery autocomplete in my web application but encounter issues. I am developing my application in ASP.NET and JQuery.
Here\'s the part of the Autocopm
You're right -- your JSON is an array which contains a single object. You're expecting just that object.
Try modifying your code like so:
success: function (data) { data = data[0];