In my project we're using the default ADFS login page to log in to ADFS as single sign on. The page itself takes loads of parameters but I am unable to get any of them from the request. I've created an override function for initialize culture as follows:
protected override void InitializeCulture()
{
string languageId = Request["lang"];
if (languageId != null)
{
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture(languageId);
Thread.CurrentThread.CurrentUICulture = new CultureInfo(languageId);
}
base.InitializeCulture();
}
The idea was to have a flag that is a link, which would add something I could catch from the initialize culture method from the request.
Now setting the culture by hand (as in, skipping the Request reading part) works just fine and I am able to change the language and culture of my page. However I am unable to get anything from the request. This includes any predefined parameters in the original get URL.
I am also unable to store anything to session and I am assuming its because of the way the login page is created.
Has anyone been able to localize their ADFS login page dynamically? If so, any pointers would be appreciated.