Gli ultimi tutorial di sviluppo web
 

ASP.NET Pagine Web - The Helper WebGrid


WebGrid - Uno dei tanti aiutanti ASP.NET Web utili.


Facendo il codice HTML Yourself

In un capitolo precedente, è visualizzato i dati del database utilizzando razor codice, e facendo il Tag HTML da soli:

Esempio 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>
Esempio Run »

Utilizzando il WebGrid Helper

Utilizzando l'helper WebGrid è un modo più semplice per visualizzare i dati.

L'helper WebGrid:

  • imposta automaticamente una tabella HTML per visualizzare i dati
  • Supporta diverse opzioni per la formattazione
  • Supporta paging attraverso i dati
  • Supporta ordinamento cliccando su intestazioni delle colonne

WebGrid Esempio

@{ 
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>
Esempio Run »