I am using AutoComplete Extender from Ajax control tool kit. I have a webservice that this extender uses. In the web method I need to access a value "empid" which is present in my aspx page. I placed this value in HttpContext's Items collection in my aspx page.
HttpContext.Items["empid"]=;
In the web method I am trying to access the same using
string s=Context.Items["empid"];
But Items collection does not have any item there. Is this due to the partial postback the autocomplete extender control is doing.
Can some one help?