使用“提交”按钮在表单中传递用户 ID (Razor asp.net)
我有一个从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将隐藏输入添加到包含 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.