WebGrid - Unul dintre mai multe utile Helpers ASP.NET Web.
Făcând HTML-te
Într - un capitol anterior, ați afișat date de baze de date prin utilizarea de razor cod, și de a face HTML markup - te:
Exemplul Baza de date
@{
var db = Database.Open("SmallBakery");
var selectQueryString = "SELECT * FROM Product ORDER BY Name";
}
<html>
<body>
<h1>Small Bakery Products</h1>
<table>
<tr>
<th>Id</th>
<th>Product</th>
<th>Description</th>
<th>Price</th>
</tr>
@foreach(var row in db.Query(selectQueryString))
{
<tr>
<td> @row.Id </td>
<td> @row.Name </td>
<td> @row.Description </td>
<td style="text-align:right"> @row.Price </td>
</tr>
}
</table>
</body>
</html>
Run exemplu » Cu ajutorul WebGrid Helper
Utilizarea Helper WebGrid este o modalitate mai simplă de a afișa date.
WebGrid Helper:
- setează automat un tabel HTML pentru a afișa date
- Suportă diferite opțiuni pentru formatarea
- Suportă paginare prin date
- Suporta sortare făcând clic pe titlurile de coloană
WebGrid Exemplu
@{
var db = Database.Open("SmallBakery") ;
var selectQueryString = "SELECT * FROM Product ORDER BY Name";
var data = db.Query(selectQueryString);
var grid = new WebGrid(data);
}
<html>
<head>
<title>Displaying Data Using the WebGrid Helper</title>
</head>
<body>
<h1>Small Bakery Products</h1>
<div id="grid">
@grid.GetHtml()
</div>
</body>
</html>
Run exemplu »