// 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(NickBase).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!NickBaseExists(NickBase.Id)) { return(NotFound()); } else { throw; } } return(RedirectToPage("/MenagePanel/MenageUser/NickNames")); }
// 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(Template).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!TemplateExists(Template.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.NickList.Add(NickBase); await _context.SaveChangesAsync(); return(RedirectToPage("/MenagePanel/MenageUser/NickNames")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Template = await _context.PassionType.FindAsync(id); if (Template != null) { _context.PassionType.Remove(Template); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } NickBase = await _context.NickList.FindAsync(id); if (NickBase != null) { _context.NickList.Remove(NickBase); await _context.SaveChangesAsync(); } return(RedirectToPage("/MenagePanel/MenageUser/NickNames")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } AchievementType = await _context.TypeTalent.FindAsync(id); if (AchievementType != null) { _context.TypeTalent.Remove(AchievementType); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Level = await _context.Level.FindAsync(id); if (Level != null) { _context.Level.Remove(Level); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } Quesion = await _context.Quesion.FindAsync(id); if (Quesion != null) { _context.Quesion.Remove(Quesion); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }