ASP MVC 3 是否可以识别<输入>控制器 [post] 方法中的 id?输入>
我正在使用 so 来编辑对象,并使用 进行验证
我还有另一个输入,type="button" 与取消按钮的
onclick
事件(带有重定向)。然而,这使用了 JS 调用,我想避免这种情况。
我宁愿在控制器内处理验证或取消选择,以便兼容 NoScript。
那么是否可以在控制器 post 方法中检索在
谢谢
I'm using a so as to edit an object, with an <input type="submit">
for validation
I've also another input, type="button"
with an onclick
event for the cancel button (with a redirect). However, this use a JS call, which I'd like to avoid.
I'd rather prefer to process the validation or cancel choice within the controller, so as to be NoScript compliant.
So is it possible to retrieve, within the controller post method, the id of the <input>
that was clicked in the <form>
?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置 then 的名称:
您可以在控制器中
You can set the name of your
Then in your controller:
我不确定我是否理解你的意思,但如果你的取消按钮执行重定向,它应该以 GET 结尾,而你的提交按钮执行 POST,这就是你应该如何区分这两个请求。
检查控制器操作方法中的 [HttpPost] 属性。
I'm not sure if I understand you, but if your cancel button does a redirect, it should end in a GET, and your submit button does a POST, that's how you should difference both request.
Check the [HttpPost] attribute in controller action methods.