菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" href="/try/showrazor.css"> </head> <body> <span class="marked">@Code<br> Dim db = Database.Open("SmallBakery") <br> Dim query = "SELECT * FROM Product" <br> End Code</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">@Code<br> Dim row<br> for each row in db.Query(query)<br> End Code</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">@Code next End Code</span><br> </table> <br> </body> <br> </html> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net