public ActionResult Details(int page, int rows, FormCollection collection) { string JobCode = collection["JobCode"] ?? ""; string JobName = collection["JobName"] ?? ""; string IsActive = collection["IsActive"] ?? ""; var job = StudentService.GetDetails(page, rows, JobCode, JobName, IsActive); return Json(job, "text", JsonRequestBehavior.AllowGet); }
谁能解释下两个问号是什么意思呀?
- 6 回答
- 0 关注
- 418 浏览
添加回答
举报
0/150
提交
取消