Can anyone tell me how can i dynamically initialize thread culture in a asp.net webservice call?
In my aspx pages i have a base page where i override the InitializeCulture() Method.
Note that the value of selected language is saved in Session State.
In
Global.asax
file you can set the current culture, even if its web service or web page.You are changing your requirements, however
Session
object will not be available inBegin_Request
method, you can do this in your web method.