C# 实例 使用数据库 显示数据库数据
c# 实例 使用数据库 显示数据库数据
@{
var db = database.open("smallbakery");
var query = "select * from product";
}
<html>
<body>
<h1>small bakery products</h1>
<table border="1" width="100%">
<tr>
<th>id</th>
<th>product</th>
<th>description</th>
<th>price</th>
</tr>
@foreach(var row in db.query(query))
{
<tr>
<td>@row.id</td>
<td>@row.name</td>
<td>@row.description</td>
<td align="right">@row.price</td>
</tr>
}
</table>
</body>
</html>
相关文章
- ASP.NET Web Pages 帮助器
- ASP.NET Web Pages WebGrid
- ASP.NET Razor C# 逻辑
- ASP.NET MVC 参考手册
- ASP.NET TextBox 控件
- ASP.NET Button 控件
- ASP.NET 导航
- ASP.NET ValidationSummary 控件
- ASP.NET Calendar 控件
- ASP.NET CheckBoxList 控件
- ASP.NET ImageButton 控件
- ASP.NET Label 控件
- WebSecurity CurrentUserName 属性
- WebSecurity ResetPassword 方法
- ASP.NET HTML 控件 CompareValidator 2
- ASP.NET HTML 控件 RegularExpressionValidator
- ASP.NET HTML 控件 Hashtable RadioButtonList 1
- ASP.NET HTML 控件 Hashtable DropDownList
- ASP.NET HTML 控件 SortedList RadiobuttonList 2
- C# 实例 For Each 循环