dbcontent
var ALLALBUMS=from album in db.albums
orderby album.title ascending
select album;
storemanagercontroller
@{html.beginform("search","home",formmethode.get)},用来辅助搜素,在{}里有效;
@html.textarea("text","hello");
@html.dropdownlist
@hmtl.listbox
@html.label
@html.textbox
@html.password
@html.hidden
@html.radiobutton
@html.actionlink
@hmtl.routelink 方法只接受路由名称,不接受控制器名称和操作名称;
html.partial,用于将部分视图渲染成字符串;
html.renderpartial 直接写入响应输出流,不返回字符串;所以必须放在代码块中,不能放在表达式中;
html.action:执行单独的控制器操作;帮助渲染部分视图;
html.renderaction:可以直接写入响应流,