示例#1
0
 public string Delete()
 {
     try
     {
         int id = int.Parse(Request.Form["id"]);
         UserStorageService.DeleteFile(id);
         return("true");
     }
     catch
     {
         return("false");
     }
 }