Reputation: 25665
Im using jquery autocomplete can I pass extraParams to webservice in asp.net ? and how will my [WebMethod] get it ?
Upvotes: 2
Views: 4047
Reputation: 68456
You pass an extra params function as follows:
$("#controlId").setOptions(
{
extraParams:
{
extra: function()
{
return "Something";
}
}
}
);
You then retrieve this in your webservice using:
string yourParam = <HttpContext Goes Here>.QueryString["extra"];
Upvotes: 4