Select "No change is needed” if the underlined text makes the statement correct.

This question requires that you evaluate the underlined text to determine if it is correct.
The Response.Redirect method is used to transfer processing of the current page to a new
page, and then return processing back to the calling page once processing of the new page
has completed.
Select the correct answer if the underlined text does not make the statement correct. Select
“No change is needed” if the underlined text makes the statement correct.

This question requires that you evaluate the underlined text to determine if it is correct.
The Response.Redirect method is used to transfer processing of the current page to a new
page, and then return processing back to the calling page once processing of the new page
has completed.
Select the correct answer if the underlined text does not make the statement correct. Select
“No change is needed” if the underlined text makes the statement correct.

A.
No change is needed

B.
Server.Transfer method

C.
Server.Execute method

D.
meta http-equiv=”refresh” tag

Explanation:



Leave a Reply 3

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


Antoine

Antoine

server.transfer method. The server.transfer method is used to transfer processing of the current page to a new page

Sancho

Sancho

It’s server.execute

When Server.Execute is used, a URL is passed to it as a parameter, and the control moves to this new page. Execution of code happens on the new page. Once code execution gets over, the control returns to the initial page, just after where it was called. However, in the case of Server.Transfer, it works very much the same, the difference being the execution stops at the new page itself (means the control isn’t returned to the calling page).

Nikesh

Nikesh

Server.execute