if I understand correctly, you want to persist the culture information
throughout multiple web requests?
I've written a 3 part series on creating multilingual websites, it goes
beyond using the built-in resourceManager. You might find it all
interesting, but for now, check out:
http://www.openmymind.net/index.aspx...d=4#urlrewrite
it talks about how to use Global.asax and UrlRewriting to pass around the
culture.
Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
http://openmymind.net/redirector.aspx?documentId=51 - Learn about AJAX!
"BabuLives" <> wrote in message
news: oups.com...
> hai,
>
> By using the following i can get the localised information for the
> particular form in which am writing this code but what should i do if i
> want to get the same language data for the other forms also..
>
> Thread.CurrentThread.CurrentCulture = new CultureInfo("hi-IN");
> Thread.CurrentThread.CurrentUICulture = new CultureInfo("hi-IN");
> ResourceManager rm = new
> ResourceManager("WebSatellite.ResourceFile",Assemb ly.GetExecutingAssembly());
> string st=rm.GetString("lblMessage");
> lblMessage.Text=rm.GetString("lblMessage");
>
>
> Regards,
> Satheesh
>