使用“提交”按钮在表单中传递用户 ID (Razor asp.net)

发布于 2024-12-09 02:00:18 字数 312 浏览 1 评论 0原文

我有一个从 SQL 数据库显示的用户列表。每个用户都附有一个删除按钮。我不确定如何从 Page.Request 对象中提交的表单中检索 seller.id。

@foreach(var seller in Db.GetUser())
{
  <form method="post" id="form3"> @seller.FirstName 
    <INPUT TYPE="image" SRC="deleteButton.png" VALUE="X" name="@seller.Id">  
  </form> 
}

I have a list of users that is displayed from a SQL db. Each user is appended with a delete button. I am not sur ehow to retrieve the seller.id from the submitted form in Page.Request object.

@foreach(var seller in Db.GetUser())
{
  <form method="post" id="form3"> @seller.FirstName 
    <INPUT TYPE="image" SRC="deleteButton.png" VALUE="X" name="@seller.Id">  
  </form> 
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绝不放开 2024-12-16 02:00:18

您应该将隐藏输入添加到包含 ID 的表单中。
然后,您可以将同名参数添加到您的操作中。

You should add a hidden input to the form containing the ID.
You can then add a parameter to your action with the same name.

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