ASP.NET MVC 3 Multiple Submit Inputs in One Form

前端 未结 3 1299
北恋
北恋 2020-12-08 21:00

I am currently having an issue with multiple action buttons being in the same form.

The first button would perform verification while the second button would save pr

3条回答
  •  佛祖请我去吃肉
    2020-12-08 21:42

    
    
    
                [HttpPost, ActionName("OrginalActionName")]
                [FormValueRequired("nameONE")]
                public ActionResult WhateverYouWantONE(type name)
                {
                    code...
                }
    
                [HttpPost, ActionName("OrginalActionName")]
                [FormValueRequired("nameTWO")]
                public ActionResult WhateverYouWantTWO(type name)
                {
                    code...
                }
    

提交回复
热议问题