To give XYZ's workers company news and information, you develop an ASP.NET application. Employees in New Zealand using the app. <br>
<br>
CurrentDateLabel is the name of a Web Form label control on Default.aspx. The next piece of code was included in the Default.aspx Page.Load event handler: currentDateLabel. Text equals DateTime.Now. ToString(“D”) <br>
<br>
For workers in New Zealand, you must make sure that the data is shown accurately. What ought you to do?
-
A
In the Web.config file for the application, set the uiCulture attribute of the globalization element to en-NZ.
-
B
In the Web.config file for the application, set the culture attribute of the globalization element to en-NZ
-
C
In Visual Studio .NET, save the Default.aspx page for both versions of the application by selecting Advanced Save Options from the File menu and selecting UTF-8.
-
D
In Visual Studio .NET, set the responseEncoding attribute in the page directive for Default.aspx to UTF-8.