A Razor view has 3 buttons inside a form. All button\'s actions will need form values which are basically values coming input fields.
Every time I click any of butto
In case you're using pure razor, i.e. no MVC controller:
Hello World @if (IsPost) { @Request.Form["SubmitForm"] }
@Request.Form["SubmitForm"]
Clicking each of the buttons should render out Hello and World.