How do I prevent multiple form submission in .NET MVC without using Javascript?

后端 未结 13 2125
情深已故
情深已故 2020-11-28 02:36

I want to prevent users submitting forms multiple times in .NET MVC. I\'ve tried several methods using Javascript but have had difficulties getting it to work in all browser

13条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-28 03:15

    Dont reinvent the wheel :)

    Use the Post/Redirect/Get design pattern.

    Here you can find a question and an answer giving some suggestions on how to implement it in ASP.NET MVC.

提交回复
热议问题