我正在尝试从文本框中获取 textchanged 值以在我的 Controller 中更新。
查看
@Html.TextBox("Quantity", item.Quantity)
<a href="@Url.Action("Update", "Shopping", new { id = Request.QueryString["UserID"], productid = item.ProductID, qty ="Quantity", unitrate = item.Rate })">
<img alt="updateitem" style="vertical-align: middle;" height="17px" src="~/Images/product_updates_image.png"
title="update" id="imgUpdate" />
</a>
在我的 Controller 中更新
public ActionResult Update(string id, string productid, int qty, decimal unitrate)
{
if (ModelState.IsValid)
{
int _records = UpdatePrice(id,productid,qty,unitrate);
if (_records > 0)
{
return RedirectToAction("Index1", "Shopping");
}
else
{
ModelState.AddModelError("","Can Not Update");
}
}
return View("Index1");
}
更新函数
public int UpdatePrice(string id,string productid, int qty, decimal unitrate)
{
con.Open();
var total = qty * unitrate;
SqlCommand cmd = new SqlCommand("Update [Cpecial_Shopping_Cart_tbl] Set Price='"+ total +"' where [User ID]='" + id + "' and [Product ID]='" + productid + "'", con);
cmd.Parameters.AddWithValue("@total", total);
return cmd.ExecuteNonQuery();
}
我在 @Html.ActionLink
中为数量变量传递了文本框名称。但是当文本框的值发生变化时,值并没有传递进去。
编辑:
最初来自 DB 的文本框的值为 1。当我更改文本框值时,它没有得到更新,即使在发布表单时也会更新相同的值。
您需要使用表单将 View 中的值发送 (POST) 到 Controller 中。
这是一个粗略的例子:
@using (Html.BeginForm("Update", "Shopping", FormMethod.Post, new { @id = "myHtmlForm" }))
{
@Html.Hidden("id", Request.QueryString["UserID"]);
@Html.Hidden("productid", item.ProductID)
@Html.Hidden("unitrate", item.Rate)
@Html.TextBox("qty", item.Quantity)
<a href="javascript:document.getElementById('myHtmlForm').submit();">
<img alt="updateitem" style="vertical-align: middle;" height="17px" src="~/Images/product_updates_image.png"
title="update" id="imgUpdate" />
</a>
}
我是一名优秀的程序员,十分优秀!