forum

Home / DeveloperSection / Forums / How to show details view in mvc3?

How to show details view in mvc3?

Anonymous User 2025 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();
    }


Updated on 10-Nov-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By