using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Estoque.DAO;
namespace Estoque.Controllers
{
public class ProdutoController : Controller
{
public ActionResult Index()
{
ProdutoDAO dao = new ProdutoDAO();
IList<Produto> produtos = dao.listarProduto();
ViewBag.Produtos = produtos;
// the name ViewBag does not exist in the current contex
return View();
}
}
}
Ao tentar utilizar atributo ViewBag
herdada da classe Controller
, exibe o seguinte erro:
// the name ViewBag does not exist in the current context