Currently we have a set of form controls that do post backs and we decided to get some "free" user experience by wrapping them in an update panel. The controls store data in the session state for that user so that we don't have to constantly request data from our platform.
When doing WebMethods and WebService calls if we want to make use of the session we have to set the EnableSession property to be true if we want to access the session. Since update panels also do the same thing, where is the proper place to put the WebMethod/EnableSession attribute so that requests made from the update panel have access to the session?
Thanks.