DbNetFile is an ASP.NET document management control that provides a web-based interface to the file system. DbNetFile provides the ability to search designated areas of the file system and view or download selected content.
Ease of use
Giving a user web based access to their own or shared documents can be achieved with just a few lines of code as either a JavaScript object or an ASP.NET server-control.
The control can be implented as a JavaScript object or an ASP.NET server-control.
jQuery(document).ready( init )
function init()
{
var dbnetfile1 = new DbNetFile("dbnetfile1");
with (dbnetfile1)
{
initialize()
}
}
DbNetFile implemented as a JavaScript object
|
|
<DNL:DbNetFile
id="DbNetFile1"
runat="server">
</DNL:DbNetFile>
DbNetFile implemented as an ASP.NET server-control
|
Comprehensive searching
DbNetFile includes a powerful search dialog that allows you to find documents based on their content and attributes. DbNetFile supports both Windows Indexing Service and its successor Windows Search that enable searching on file content and an extended set of file attributes. For example, with Windows Search you are able to search against images based on their dimensions and not just their size. For a complete list if file attributes supported by Windows Search click here.
|
|
|
|
Document viewing
By default documents are viewed in the file preview dialog. In addition to viewing the file the user also has options to print, copy, download or view in a full window.
|
Secure
DbNetFile provides programmatic access to files and because of this can easily control which files are listed or accessed and by who. Simplified access control based on your own business rules can be implemented quickly and easily without needing to understand complex operating system file access protocols.
|