菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" type="text/css" href="/try/showrazor.css" /> </head> <body> <span class="marked">@{<br> var db = Database.Open("SmallBakery"); <br> var query = "SELECT * FROM Product"; <br> }</span><br> <html> <br> <body> <br> <h1>Small Bakery Products</h1> <br> <table border="1" width="100%"> <br> <tr><br> <th>Id</th> <br> <th>Product</th> <br> <th>Description</th> <br> <th>Price</th> <br> </tr><br> <span class="marked">@foreach(var row in db.Query(query))<br> {</span><br> <tr> <br> <td><span class="marked">@row.Id</span></td> <br> <td><span class="marked">@row.Name</span></td> <br> <td><span class="marked">@row.Description</span></td> <br> <td align="right"><span class="marked">@row.Price</span></td> <br> </tr> <br> <span class="marked">}</span><br> </table> <br> </body> <br> </html> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net