コード例 #1
0
 public ActionResult Checked(string ListId, int CheckedId)
 {
     if (string.IsNullOrEmpty(ListId) == true)
     {
         return(Content("False"));
     }
     else
     {
         if (NSer.Checked(ListId, CheckedId, GetUser().Id) == true)
         {
             return(Content("True"));
         }
         else
         {
             return(Content("False"));
         }
     }
 }