Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. (TCO 3) All of the following are reasons to use Master Pages except : (Points

ID: 638392 • Letter: 1

Question

1. (TCO 3) All of the following are reasons to use Master Pages except: (Points : 4)        it facilitates designing and using common elements that are used throughout the application such as headers, footers, and banners.
       it minimizes the amount of work and effort maintaining the UI of a site.
       a content page can have multiple master pages assigned.
       nesting master pages is possible in ASP.NET through the use of master page inheritance.

Question 2. 2. (TCO 3) Which statement of the following specifies the master page to be used on the application level? (Points : 4)        <@ Page Language=

Explanation / Answer

Answers:

A content page can have multiple master pages assigned.

< configuration>

<system.web>

<pages masterPageFile=”~/web460.master”/>

</system.web>

</configuration>

3. System.IO.StreamReader

4. Themes can only be applied at the page level.

5. If you need to perform many operations on a folder, it is recommended that you create an object of the Directory class that represents that folder.

6. Wrap your stream objects in a Using statement, which automatically calls the stream objects Dispose() method once the Using statement is closed.

7.

<Configuration>
<system.web>
<pages theme="BlueTheme" />
OR
<pages styleSheetTheme=" BlueTheme " />
</system.web>
</Configuration>