ASP MVC 3 是否可以识别<输入>控制器 [post] 方法中的 id?

发布于 2024-12-25 04:20:46 字数 338 浏览 1 评论 0原文

我正在使用 so 来编辑对象,并使用 进行验证

我还有另一个输入,type="button" 与取消按钮的 onclick 事件(带有重定向)。然而,这使用了 JS 调用,我想避免这种情况。

我宁愿在控制器内处理验证或取消选择,以便兼容 NoScript。

那么是否可以在控制器 post 方法中检索在

中单击的 的 id?

谢谢

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

趁微风不噪 2025-01-01 04:20:47

设置 then 的名称:

<input type="submit" name="submitButton" />

您可以在控制器中

if(Request["submitButton"] != null) {
  // ...
}

You can set the name of your

<input type="submit" name="submitButton" />

Then in your controller:

if(Request["submitButton"] != null) {
  // ...
}
笑饮青盏花 2025-01-01 04:20:47

我不确定我是否理解你的意思,但如果你的取消按钮执行重定向,它应该以 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文