我使用更新操作根据@ Html.Textbox的输入进行更新。
@using (Html.BeginForm("Update", "Shopping", new { UserID = Request.QueryString["UserID"] }, FormMethod.Post, new { id = "myForm" }))
{
@Html.ValidationSummary()
@Html.Hidden("id", @Request.QueryString["UserID"] as string)
@Html.Hidden("productid", item.ProductID as string)
@Html.TextBox("Quantity", item.Quantity)
@Html.ValidationMessage("Quantity", "*")
@Html.Hidden("unitrate", item.Rate)
<input type="submit" value="Update" />
}
和我的模型类
[Required(ErrorMessage = "Quantity is required.")]
[Display(Name = "Quantity")]
[Range(2, 100, ErrorMessage = "There is not enough inventory for the product to fulfill your order.")]
public int? Quantity { get; set; }
问题是当文本框为空时我没有收到验证消息。 但是当我使用@ Html.TextBoxFor
时 @Html.TextBoxFor(modelItem => item.Quantity)
@Html.ValidationMessageFor(modelitem => item.Quantity)
我收到验证消息。我的更新操作无效。
在这里,我有两个选择。
1.如何在@ Html.TextboxFor中传递文本框名称“qty”? (要么)
2.如何使用@ Html.ValidationMessage()获取@ Html.Textbox()中的验证消息
任何建议..
编辑:
我的更新行动
[HttpPost]
public ActionResult Update(string id, string productid, int Quantity, decimal unitrate)
{
if (ModelState.IsValid)
{
int _records = UpdatePrice(id, productid, Quantity, unitrate);
if (_records > 0)
{
return RedirectToAction("Index1", "Shopping", new { UserID = Request.QueryString["UserID"] });
}
else
{
ModelState.AddModelError("","Can Not Update");
}
}
return View("Index1");
}
答案 0 :(得分:5)
当您使用
时,您的问题中有答案@Html.TextBoxFor(modelItem => item.Quantity)
@Html.ValidationMessageFor(modelitem => item.Quantity)
你得到错误消息因为MVC模型验证对name
属性有效,因为@Mystere Man在评论中说你违反所有的约定和约定是MVC的全部内容,要么改变属性名称在您的模型中,如果您想利用MVC的模型验证,请在视图中使用它。