Features

DbNetGrid is an ASP.NET grid control that can be used to display and edit database information from any of the supported databases.

Ease of use

A grid with full search, navigation, edit, export, print and copy facilities can be created with just a few lines of code. The control can be implented as a JavaScript object or an ASP.NET server-control.


jQuery(document).ready( init )
 
function init()
{
    var dbnetgrid1 = new DbNetGrid("dbnetgrid1");
    with (dbnetgrid1)
    {
        connectionString = "SamplesDatabase"
        fromPart = "customers"
        loadData()
    }
}
DbNetGrid implemented as a JavaScript object
 
	<DNL:DbNetGrid 
		id="customersGrid" 
		runat="server" 
		ConnectionString = "SamplesDatabase"
		FromPart = "customers"
		>
	</DNL:DbNetGrid>
DbNetGrid implemented as an ASP.NET server-control

Comprehensive searching

DbNetGrid includes a powerful search dialog that allows you to easily interrogate your data. A full set of query operators can be applied to each column selected for search and combined together in exclusive or non-exclusive mode. Lookups can be added to enable key values be selected using their descriptive text.

Click to open
Click to open
Feature rich editing

DbNetGrid includes a built-in edit dialog that enables you to edit the currently selected row and add new rows. All input is automatically type validated and supports the editing of all column types including binary data fields that may be used to store images or documents. The dialog also supports fields with HTML content with its own HTML editor. As with the search dialog, lookups are also supported and can be implemented in one of six different styles.

Full range of output options

Grid data can be exported in HTML, Word, Excel, XML, CSV or PDF format. In addition grid data can be printed directly to a printer or copied to the clipboard.

Click to open
Click to open
Charting

DbNetGrid is integrated with the MS Chart Control allowing grid data to be represented graphically in real-time.