public async Task <IActionResult> Edit(int id, [Bind("Id,Subject,Contents,Writer,RegDate,ReadCount")] Board board) { if (id != board.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(board); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!BoardExists(board.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(board)); }
public async Task <IActionResult> Edit(int id, [Bind("Id,Cate,Subject,Contents,RegDate")] Manage manage) { if (id != manage.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(manage); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!ManageExists(manage.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(manage)); }