Navigation: <Root level>

DbNetFileCore

 

 

 

 

DbNetFileCore

 

DbNetFileCore is file system browsing component that has built-in searching and sorting capabilities that can be added to any web page with just a few lines of code.

 

 

<div style="display:flex;align-items:flex-start;">

    <div id="treeview" style="padding:10px"></div>

    <div id="files" style="padding:10px"></div>

</div>

@{

    DbNetFileCore filesView = new DbNetFileCore(string.Empty,"files");

    filesView.FilesOnly = true;

    DbNetFileCore treeView = new DbNetFileCore("/dbnetfile/documents", "treeview");

    treeView.TreeView = true;

    treeView.AddLinkedControl(filesView);

    @treeView.Render()

}

 

 

 

Copyright © 2023 DbNetLink