Properties of web pages - Validation Control and Web page navigation

Q.  Match the following List 1 to List 2

a. Client-side navigation ---------------------- i. Server.Transfer
b. Cross-page posting ------------------------- ii. Response.Redirect
c. Client-side browser redirects ------------- iii. PostBackUrl
d. Server-side transfer ------------------------- iv. HyperLink

- Published on 27 Jul 15

a. a-iv, b-iii, c-ii, d-i
b. a-ii, b-iv, c-i, d-iii
c. a-ii, b-i, c-iii, d-iv
d. a-ii, b-iv, c-iii, d-i

ANSWER: a-iv, b-iii, c-ii, d-i
 

    Discussion

  • Raj Singh   -Posted on 14 Sep 15
    HyperLink control is used for client side navigation. It will create a link to another Web page. It will create a link to another Web page. The Text property is used for displaying the text in the HyperLink.
    ASP.Net provides a feature known as Cross Page PostBack that enables a web form to post-back to a different web form. The Page class has a property named PreviousPage. If the source page and target page are in the same ASP.NET application, the PreviousPage property in the target page contains a reference to the source page.
    The Page.Response object uses Client-side browser redirects. The Redirect method can be used in your server-side code to instruct the browser to initiate a request for another Web page.
    Server.Transfer method transfers all the state information in one ASP .NET Page to a second ASP.NET Page.

Post your comment / Share knowledge


Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)