Pagine Web ASP.NET - L'helper WebGrid


WebGrid - Uno dei tanti utili Web Helper di ASP.NET.


Fare l'HTML da soli

In un capitolo precedente, hai visualizzato i dati del database utilizzando il codice razor e facendo tu stesso il markup HTML:

Esempio di database

@{
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>


Utilizzo di WebGrid Helper

L'uso dell'helper WebGrid è un modo più semplice per visualizzare i dati.

L'assistente di WebGrid:

  • Imposta automaticamente una tabella HTML per visualizzare i dati
  • Supporta diverse opzioni per la formattazione
  • Supporta il paging dei dati
  • Supporta l'ordinamento facendo clic sulle intestazioni delle colonne

Esempio di WebGrid

@{ 
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>

Riferimento all'oggetto WebGrid

Helper Description
WebGrid(data)Creates a new WebGrid object using data from a query.
WebGrid.GetHtml()Renders markup to display data in an HTML table.
WebGrid.Pager()Renders a pager for the WebGrid object.