What should you do?

You are developing an ASP.NET web application. Your designer creates a theme named General for general use in the application. The designer also makes page-specific changes to the default properties of certain controls.
You need to apply the General theme to all pages, and you must ensure that the page-specific customizations are preserved.
What should you do?
A. Add the following configuration to the web.config file.
<configuration>
<system.web>
<pages theme="General"/>
</system.web>
</configuration>
Set the following page directive on pages that have customizations.
<%@ Page EnableTheming="true" %>
B. Add the following configuration to the web.config file.
<configuration>
<system.web>
<pages styleSheetTheme="General"/>
</system.web>
</configuration>
C. Add the following configuration to the web.config file.
<configuration>
<system.web>
<pages theme="General"/>
</system.web>
</configuration>
Set the following page directive on pages that have customizations.
<%@ Page StyleSheetTheme="General" %>
D. Add the following configuration to the web.config file.
<configuration>
<system.web>
<pages theme="General"/>
</system.web>
</configuration>
Set the following page directive on pages that have customizations.
<%@ Page EnableTheming="false" %>

microsoft-exams

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.