Overview

DbNetFile is a lightweight, fully encapsulated component which facilitates the presentation and maintenance of file system information within a browser environment.

Using DbNetFile, full-featured, robust interfaces to the file system are easliy created using only a few lines of code. There is no requirement for any complex development tools.

...
window.onload = initFile

//////////////////////////////////////////////////////////////////////////////////////////////
function initFile()
//////////////////////////////////////////////////////////////////////////////////////////////
{
	var dbnetfile1 = new DbNetFile( "dbnetfile1" )

	with ( dbnetfile1 )
	{
		rootFolder = "/documents/images"
		initialise()
	}
}
...

DbNetFile can be used to create standalone web applications or easily integrated with existing applications.