I am using Jquery UI Multiple Values Autocomplete and I'm making the request to Server:
.autocomplete({
source: function(request, response) {
$.getJSON("handlers/autocomplete.ashx", {
term: extractLast(request.term)
}, response);
},
How to I get back the value of term
in my .ashx handler?
I have tried Request.Form["TextBox1"]
but I'm getting object reference not set to an intance of an object
error. Is there any way I can get it directly?
Thanks