Easy to use
Using DbNetEdit, full-featured, robust web-applications are easliy created using only a few lines of code. Forms can easily be integrated into existing pages and DbNetEdit can be used with other tools like Visual Studio and Coldfusion. Below is sample code which will create a simple DbNetEdit form.
...
window.onload = initEdit
//////////////////////////////////////////////////////////////////////////////////////////////
function initEdit()
//////////////////////////////////////////////////////////////////////////////////////////////
{
var categoryForm = new DbNetEdit( "dbnetedit1" );
with (categoryForm)
{
connectionString = "samples"
tableName = "categories"
primaryKeyName = "categoryid"
initialise()
}
}
...
...