GET method - When user request a web page by entering Uniform Resource Locator (URL) - ASP.NET Introduction

Q.  When user request a web page by entering Uniform Resource Locator (URL) then which method /verb/command is used in ASP.NET?
- Published on 27 Jul 15

a. POST
b. SET
c. GET
d. All of the above.

ANSWER: GET
 

    Discussion

  • Shiva   -Posted on 13 Sep 15
    GET method is used When user request a web page by entering Uniform Resource Locator (URL). This method is used when you request data from a specified resource.
    GET request sent query string in the URL. When you want to send some data from one page to another through get, the data is appended in URL, so you should never pass the sensitive data. GET requests remain in the browser history and can be bookmarked. It also has length restrictions.

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.)