黄色电影一区二区,丰满熟妇AV,97成人资源,日韩在线性爱

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)文章