Hi,
How can i get the ID of a radcombo in the InitilizeCulture() method.
I have to change the text of the page according to the culture. But the culture is changing from the radcombo. After selecting the culture form radcombo i have to get the value to so that i can change.
But the radcombo id is not coming.
in code i have written as
How can i get the ID of a radcombo in the InitilizeCulture() method.
I have to change the text of the page according to the culture. But the culture is changing from the radcombo. After selecting the culture form radcombo i have to get the value to so that i can change.
But the radcombo id is not coming.
in code i have written as
protected override void InitializeCulture()
{
string strLanguage = Request["DropDownList1"];
Session[
"lang"] = strLanguage;
Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture(Session["lang"].ToString());
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(Session["lang"].ToString());
}
but it is showing error because strLanguage is getting value of "null"
How can i get the control
Thanks,
Sai