You are creating an ASP.NET application by using the .NET Framework 3.5.
Each page within the application will contain a disclaimer that will use a Label control. The Label control on each page will need to support localization in English and French.
You need to implement a resource file strategy that meets the following requirements:
– A French-region user views the disclaimer in French.
– All other users view the disclaimer in English.
Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
A.
Create a resource file for each page for the en-US culture.
Place the files in the App_LocalResources directory.
B.
Create a resource file for each page for the fr culture.
Place the files in the App_LocalResources directory.
C.
Create a resource file for each page for the fr-FR culture.
Place the files in the App_GlobalResources directory.
D.
Create a resource file for each page without any culture specified.
Place the files in the App_GlobalResources directory.
E.
Create a resource file for each page without any culture specified.
Place the files in the App_LocalResources directory.