我有个添加页面 ,需要传参数进来
public ActionResult PlanAdd(string deptName, string startTime)
{
ViewData["DivTxtDeptId"] = GetDeptIds(deptName);
ViewData["ListDeptName"] = deptName;
ViewData["PlanInspectionDate"] = startTime;
ListBind(1);
return View();
}
添加按钮有如下代码
if (String.IsNullOrEmpty(deptId))
{
ModelState.AddModelError("DeptId", "代维商编号不能为空。");
}
这样的提示必须要
return View(); 可是我return View();了后页面的参数没了
有没有什么好办法
你在客户端得接收呀,然后用JS alert