コード例 #1
0
ファイル: ProductController.cs プロジェクト: war-man/SKTIME
 public ActionResult Quantities(int id)
 {
     return(Json(new
     {
         html = RenderPartialViewToString("Quantities", ProductQuantity.Find(UserID, Employee.ID, id))
     }, JsonRequestBehavior.AllowGet));
 }