Working with Web Config Files Flashcards
1
Q
Can a site have multiple web.config files?
A
Yes
2
Q
Where is the machine .config file found?
A
%systemRoot%\Microsoft.NET\Framework\CONFIG\
3
Q
Does the machine .config file override the web config files or vise versa?
A
The Web.config file further down the chain overrides the machine.config file.
4
Q
What type of files are web.config files?
A
XML (Extensible Markup Language)
5
Q
What does WSAT stand for?
A
Web Site Administration Tool
6
Q
A standard ASPX Page has which three sections?
A
Page Directives - specifies how a page should be processed
Code -
Page Layout - HTML
7
Q
What does the runat = “server” attribute imply?
A
Code contained in the code block will run on the server.
8
Q
What does ASP stand for?
A
Active Server Pages