博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net-view
阅读量:5942 次
发布时间:2019-06-19

本文共 725 字,大约阅读时间需要 2 分钟。

hot3.png

我看到 的views 的方法:

        <div class="form-group">
            @Html.LabelFor(model => model.ArtistId, "ArtistId", new { = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.DropDownList("ArtistId", String.Empty)
                @Html.ValidationMessageFor(model => model.ArtistId)
            </div>
        </div>

193433_ne3Y_2367514.png

        <div class="form-group">

            @Html.LabelFor(model => model.Title, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Title)
                @Html.ValidationMessageFor(model => model.Title)
            </div>
        </div>

193517_gtIy_2367514.png

 

 

        <dt>

            @Html.DisplayNameFor(model => model.Price)
        </dt>

        <dd>

            @Html.DisplayFor(model => model.Price)

193737_9dLR_2367514.png

 

actions 里面传参

 @Html.ActionLink("Edit", "Edit", new { id = Model.AlbumId })

HTML辅助方法:

 

141800_uhSN_2367514.png

 

转载于:https://my.oschina.net/u/2367514/blog/1528861

你可能感兴趣的文章
Android PullToRefreshListView和ViewPager的结合使用
查看>>
禅修笔记——硅谷最受欢迎的情商课
查看>>
struts2入门(搭建环境、配置、示例)
查看>>
Caused by: org.apache.ibatis.reflection.ReflectionException我碰到的情况,原因不唯一
查看>>
linux top命令查看内存及多核CPU的使用讲述【转】
查看>>
Linux下golang开发环境搭建
查看>>
jQuery操作input
查看>>
layer弹出信息框API
查看>>
delete from inner join
查看>>
WPF自学入门(十一)WPF MVVM模式Command命令 WPF自学入门(十)WPF MVVM简单介绍...
查看>>
git merge 和 git merge --no-ff
查看>>
独立软件开发商进军SaaS注意八个问题,互联网营销
查看>>
jdk内存的分配
查看>>
关于self.用法的一些总结
查看>>
UIView翻译 (参考)
查看>>
Android Display buffer_handle_t的定义
查看>>
SSH详解
查看>>
ASM概述
查看>>
【290】Python 函数
查看>>
godaddy域名转发(域名跳转)设置教程
查看>>