DRAG DROP
You are developing an ASP.NET MVC application in Visual Studio. The application supports multiple
cultures.
To set the culture, the application must use the AcceptLanguage header field value sent by the client
browser.
You need to ensure that the application can set the culture.
You have the following markup in the web.config file:
Which markup segments should you include in Target 1, Target 2 and Target 3 to complete markup?
To answer, drag the appropriate markup segments to the correct targets. Each markup segment may
be used once, more than once, or not at all. You may need to drag the split bar between panes or
scroll to view content.
Answer: See the explanation
Explanation:
Target1: globalization
Target2: enableClientBasedCulture
Target3: uiCultureWhen the EnableClientBasedCulture property is enabled, the Culture and UICulture properties are
based on the AcceptLanguage header field value that is sent by the client browser. If the
AcceptLanguage header value cannot be mapped to a specific culture, the Culture and UICulture
values are used. The default value is false.
The following combination of attributes is used in the globalization section: culture=”auto”,
uiCulture=”auto”, enableClientBasedCulture=”true”, e.g.:
<globalization uiCulture=”auto” culture=”auto” enableClientBasedCulture=”true”>
http://stackoverflow.com/questions/8878856/does‐the‐enableclientbasedculture‐
attribute‐in‐web‐config‐work‐at‐all
Same as Q.103 http://www.aiotestking.com/microsoft/which-markup-segments-should-you-include-in-target-1-target-2-and-target-3-to-complete-the-markup-2/