// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.Attach(List).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ListExists(List.Id)) { return(NotFound()); } else { throw; } } return(RedirectToPage("./Index")); }
// To protect from overposting attacks, enable the specific properties you want to bind to, for // more details, see https://aka.ms/RazorPagesCRUD. public async Task <IActionResult> OnPostAsync() { if (!ModelState.IsValid) { return(Page()); } _context.List.Add(List); await _context.SaveChangesAsync(); return(RedirectToPage("./Result")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } List = await _context.List.FindAsync(id); if (List != null) { _context.List.Remove(List); await _context.SaveChangesAsync(); } return(RedirectToPage("./Response")); }