C# 實(shí)例 使用數(shù)據(jù)庫 顯示數(shù)據(jù)庫數(shù)據(jù)
c# 實(shí)例 使用數(shù)據(jù)庫 顯示數(shù)據(jù)庫數(shù)據(jù)
@{
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>
相關(guān)文章
- ASP.NET Web Pages 幫助器
- ASP.NET Web Pages WebGrid
- ASP.NET Razor C# 邏輯
- ASP.NET MVC 參考手冊(cè)
- ASP.NET TextBox 控件
- ASP.NET Button 控件
- ASP.NET 導(dǎo)航
- 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# 實(shí)例 For Each 循環(huán)