public async Task <IActionResult> OnGetAsync(int?id) { if (id == null) { return(NotFound()); } FavoriteWebSites = await _context.FavoriteWebSites.FirstOrDefaultAsync(m => m.ID == id); if (FavoriteWebSites == null) { return(NotFound()); } return(Page()); }
public async Task <IActionResult> OnPostAsync(int?id) { if (id == null) { return(NotFound()); } FavoriteWebSites = await _context.FavoriteWebSites.FindAsync(id); if (FavoriteWebSites != null) { _context.FavoriteWebSites.Remove(FavoriteWebSites); await _context.SaveChangesAsync(); } return(RedirectToPage("./Index")); }