Select from following answers:- Set Thread.CurrentThread.CurrentCulture to a new instance of CultureInfo created with the string “en”
- Add culture=”fr” to the @ Page directive.
- In Page.Load, set Thread.CurrentThread.CurrentUICulture to a new instance of CultureInfo created with the string “en”. and Add uiculture=”en” to the @ Page directive.
- All Above
Set the UICulture at runtime by creating a new instance of CultureInfo and using it to define CurrentUICulture.
Culture defines layout and formatting, but not resource translation.
Show Correct Answer
Source: Microsoft Press book | |
Alert Moderator