When Page get loaded first time (or) Reload it will Hit GET Method. If user doing any action from Page (eg: click the submit button) it will hit the POST Method
Example:
[HttpGet]
Public ActionResult TestMethod()
{
return view();
}
[HttpPost]
Public ActionResult TestMethod(ModelClass Model)
{
return view();
}