Users Pricing

forum

home / developersection / forums / how to show details view in mvc3?

How to show details view in mvc3?

Anonymous User 2302 10 Nov 2014

HI i am new to mvc so if anyone can help me will be great basically i just want to display a partiular item details, my code

    private sneakerEntities    _sneaker_categoryDataModel = new sneaker_info.Models.sneakerEntities();
    public ActionResult Index()
    {
        IList<sneaker> Releases = _sneaker_categoryDataModel.sneakers.ToList<sneaker_info.Models.sneaker>();
        return View("Releases", Releases);
    }
    public ActionResult Details (int id)
    {
        return View();
    }


I am a content writter !


1 Answers