Hi chetan,
HttpGet and HttpPost are both the methods of posting client data or form data to the server. HTTP is a HyperText Transfer Protocol that is designed to send and receive the data between client and server using web pages.
HTTP has two methods that are used for posting data from web pages to the server. These two methods are HttpGet and HttpPost.
HttpPost is only useful when you are passing sensitive information to the server.
As per your example there are two versions of Create method, one that renders the Create form and the other that handles the request when that form is posted or submitted.
Difference between HttpGet and HttpPost Method
1. HttpGet method is default whereas you need to specify HttpPost attribute if you are posting data using HttpPost method.
2. HttpGet method creates a query string of the name-value pair whereas HttpPost method passes the name and value pairs in the body of the HTTP request.
3. HttpGet request has limited length and mostly it is limited to 255 characters long whereas HttpPost request has no maximum limit.
4. HttpGet is comparatively faster than HttpPost. HttpPost takes extra time in encapsulating the data.
5. HttpGet can carry only string data whereas HttpPost can carry both string and binary data.
6. HttpGet method creates readable url so it can be cached and bookmarked whereas such facility is not available in HttpPost method.
Refer below article for example.