Olá!
Realizando a atividade da aula três obtive a seguinte mensagem de erro:
Não é possível encontrar o recurso. Descrição: HTTP 404. O recurso que você está procurando (ou uma de suas dependências) não pôde ser removido, seu nome foi alterado ou está temporariamente indisponível. Examine o URL e certifique-se de que está digitado corretamente.
URL solicitada: /Categoria/Index
Informações sobre a Versão: Microsoft .NET Framework Versão:4.0.30319; Versão do ASP.NET:4.7.2623.0
Código do Controller
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using CaelumEstoque.DAO;
using CaelumEstoque.Models;
namespace CaelumEstoque.Controllers
{
public class CategoriaController : Controller
{
// GET: Categoria
public ActionResult Index()
{
CategoriasDAO dao = new CategoriasDAO();
IList<CategoriaDoProduto> categorias = dao.Lista();
ViewBag.Categorias = categorias;
return View();
}
}
}
Código da View
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Lista de Categorias</title>
</head>
<body>
<div>
<table>
<thead>
<tr>
<th>Id</th>
<th>Nome</th>
<th>Descrição</th>
</tr>
</thead>
<tbody>
@foreach (var categoria in ViewBag.Categorias)
{
<tr>
<td>@categoria.Id</td>
<td>@categoria.Nome</td>
<td>@categoria.Descricao</td>
</tr>
}
</tbody>
</table>
</div>
</body>
</html>