User-1561814533 posted
In a web forms project I wish to display the ReportViewer control based on a user's preferred language, so the tags in the header (for example the 'Export' tag) are displayed in the user's preferred langauge.
I have tried setting the thread culture in the Page_Load event but this does not work, here is an example of what I tried:
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture("fr-FR");
Thread.CurrentThread.CurrentUICulture = CultureInfo.CreateSpecificCulture("fr-FR");
Could you explain how I might achieve the desired result?