如何在html中显示ViewBag

时间:2015-09-21 05:53:11

标签: c# html foreach viewbag

我试图展示我的产品的一些细节(鞋= zapatillas) 在Visual Studio 2013 c#mvc上 好吧,让我们去看看代码...... 这是我在HomeController上的索引网页的一部分 http://pastebin.com/VRMb85Qf

这是我的Producto.cs http://pastebin.com/a2H1ifZT

这是我的index.cshtml,我想在其中提供一些细节,我的问题是,如何在html中调用我的sql详细信息,其中PRICE,MODEL,INFO是 看看@zap失败代码,它是那样的吗? 上

    ON THE TOP PAGE @using La_esquina_del_calzado1.Models;
in the body...
@foreach (Producto zap in ViewBag.lstProductos)
    {           @zap.getid()
                @zap.getmodelo()
                @zap.getcolor()
    }

            <div class="col-sm-4 col-lg-4 col-md-4">
                <div class="thumbnail">
                    <img src="http://placehold.it/320x150" alt="">
                    <div class="caption">
                        <h4 class="pull-right">PRICE</h4>
                        <h4>
                            <a href="#">MODEL</a>
                        </h4>
                        <p>INFO</p>

                    </div>
                </div>
            </div>

1 个答案:

答案 0 :(得分:0)

我认为你必须循环 ViewBag.Productos 而不是 ViewBag.lstProductos