you can have multiple forms in single View
just give different View to each form
But if you want to use Single View then it is change to have to check from which foam the submit button is clicked Simple by send Submit button name
Yes we can, here is an example :
// submit first form
@using(BeginForm("Action","Controller",FormMethod.Post))
{
@TextBox("txtBox1")
}
//submit second form
@using(BeginForm("Action","Controller",FormMethod.Post))
{
@TextBox("txtBox2")
}