Easy To Use

One of the key featutes of DbNetCombo is the ease with which you can add it to your application. A DbNetCombo list can be added with as little as 4 lines of code.

...  
window.onload = initialise;  
function initialise()  
{  
    var dbnetcombo1 = new DbNetCombo("categories")  
    with (dbnetcombo1)  
    {  
        connectionString = "samples"
        sql = "select categoryid, categoryname from categories order by 2"
        load()  
    }  
}  
...  
<select id=categories></select>  
...