/Demo/Nuvola.aspx

http://izwebfilemanager.googlecode.com/ · ASP.NET · 20 lines · 19 code · 1 blank · 0 comment · 0 complexity · 24d2996a30dce0afdf727637313fadc1 MD5 · raw file

  1. <%@ Page Language="C#" MasterPageFile="~/MasterPage.master" %>
  2. <%@ Register Assembly="IZ.WebFileManager" Namespace="IZ.WebFileManager" TagPrefix="iz" %>
  3. <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
  4. <div style="margin-top: 8px; margin-bottom: 8px;">
  5. Use ImagesFolder, ...ImageUrl and SpecialFolders properties to customize your icon theme
  6. </div>
  7. <div>
  8. <iz:FileManager ID="FileManager1" runat="server" Height="400px" Width="600" ImagesFolder="~/Nuvola/icons">
  9. <RootDirectories>
  10. <iz:RootDirectory DirectoryPath="~/Files/My Documents" Text="My Documents" SmallImageUrl="~/Nuvola/16x16/folder_home.gif" />
  11. </RootDirectories>
  12. <SpecialFolders>
  13. <iz:SpecialFolder DirectoryPath="~/Files/My Documents" SmallImageUrl="~/Nuvola/16x16/folder_home.gif" LargeImageUrl="~/Nuvola/32x32/folder_home.gif" />
  14. <iz:SpecialFolder DirectoryPath="~/Files/My Documents/Favorites" SmallImageUrl="~/Nuvola/16x16/folder_favorite.gif" LargeImageUrl="~/Nuvola/32x32/folder_favorite.gif" />
  15. <iz:SpecialFolder DirectoryPath="~/Files/My Documents/My Pictures" SmallImageUrl="~/Nuvola/16x16/folder_photo.gif" LargeImageUrl="~/Nuvola/32x32/folder_photo.gif" />
  16. </SpecialFolders>
  17. </iz:FileManager>
  18. </div>
  19. </asp:Content>