vote up 0 vote down star

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?

flag

1 Answer

vote up 0 vote down

The AutoComplete Extender uses a web method with a specific signature (explained in the documentation) on a web service. This will be called from the browser using JavaScript (behind the scenes).

The web service and its web method know nothing about your page - they only know the information that is passed to them in the arguments of the web method.

link|flag
Thanks Richard for the response. However I still have a doubt. I am able to access the Cache object in this web method. I am using it as below Context.Cache["key"]. And I am curious to know how this works then? – Deepa Feb 12 at 12:26
Calling Context.Cache["key"] will simply return null if no item called "key" exists, so I think that's what you're seeing. – Richard E Feb 12 at 15:22
No Richard I am getting proper values in Context.Cache["key"]. Actually I added Cache["somekey"]=value and HttpContext.Items["empid"]=value during page_init event. I am getting proper values when I access Context.Cache in web method but when I try accessing Items I dont get them. – Deepa Feb 13 at 6:15
I don't understand what you mean Deepa - however from a design point of view I would say that the web method should not rely on data in your cache, unless it put the data there itself. – Richard E Feb 16 at 8:58
Here's my design. The autocomplete extender is using a web method. This web method is searching strings from a cache object which is already populated. Please share your thoughts on this. – Deepa Feb 17 at 12:03
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.