User1596687657 posted
protected
override
void InitializeCulture()
{
if
(Session["lang"] !=
null)
{
Thread.CurrentThread.CurrentUICulture
= new
CultureInfo(Session["lang"].ToString());
Thread.CurrentThread.CurrentCulture
= CultureInfo.CreateSpecificCulture(Session["lang"].ToString());
}
else
{
Thread.CurrentThread.CurrentUICulture
= new
CultureInfo("hi");
Thread.CurrentThread.CurrentCulture
= CultureInfo.CreateSpecificCulture("hi");
}
}
If i m putting this method on an ASP.net page it is working fine but my problem is i want to use this code on multiple pages
so i want to put this code at one place.
where i can put this code?????