The server object is the top-level object from the HttpContext.Current object. It is used to make
changes on a server. Which of the following methods does it use? Each correct answer represents a
complete solution. Choose two.
A.
Finalize
B.
Execute
C.
GetConfig
D.
Transfer
Explanation:
The server object is the top-level object from the HttpContext.Current object. It provides properties
and methods related to the Web server. It is used to make changes on a server. It uses two methods:
1.Execute: It runs another page and returns the calling page.
2.Transfer: It runs another page but does not return.
These objects are used to tie multiple pages together on a Website.
Answer A is incorrect. This method allows an object to try to free resources and perform other
cleanup operations before it is reclaimed by garbage collection.
Answer C is incorrect. This method returns requested configuration information for the current
HTTP request.