VB 实例 显示数据库数据
vb 实例
显示数据库数据
@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>
相关文章
- 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# 实例 可重复使用的头部和底部
- C# 实例 While 循环
- C# 实例 If 条件