VB 實例 顯示數(shù)據(jù)庫數(shù)據(jù)
vb 實例
顯示數(shù)據(jù)庫數(shù)據(jù)
@code
dim db = database.open("smallbakery")
dim query = "select * from product"
end code
<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>
@code
dim row
for each row in db.query(query)
end code
<tr>
<td>@row.id</td>
<td>@row.name</td>
<td>@row.description</td>
<td align="right">@row.price</td>
</tr>
@code next end code
</table>
</body>
</html>
相關(guān)文章
- ASP.NET
- ASP.NET Web Pages 對象
- ASP.NET Web 的 C# 和 VB 實例
- ASP.NET MVC 安全
- ASP.NET 事件句柄
- ASP.NET SortedList
- ASP.NET DataList 控件
- ASP.NET LinkButton 控件
- WebSecurity ConfirmAccount 方法
- HTML InputCheckbox
- AdRotator
- ASP.NET HTML 控件 Calendar
- ASP.NET HTML 控件 Calendar 3
- ASP.NET HTML 控件 Checkbox
- Textbox 3
- ASP.NET HTML 控件 CompareValidator 2
- ASP.NET HTML 控件 RangeValidator 2
- C# 實例 可重復(fù)使用的頭部和底部
- C# 實例 While 循環(huán)
- C# 實例 If 條件