Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ftb.imagegallery.aspx
Package: moban.rar [view]
Upload User: szraylite
Upload Date: 2018-06-06
Package Size: 11546k
Code Size: 2k
Category:
Software Testing
Development Platform:
Java
- <%@ Page Language="C#" ValidateRequest=false Trace="false" %>
- <%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
- <script runat="server">
- protected void Page_Load(Object Src, EventArgs E) {
- // *** remove this return statement to use the following code ***
- return;
- string currentFolder = ImageGallery1.CurrentImagesFolder;
- // modify the directories allowed
- if (currentFolder == "~/images") {
- // these are the default directories FTB:ImageGallery will find
- string[] defaultDirectories = System.IO.Directory.GetDirectories(Server.MapPath(currentFolder),"*");
- // user defined custom directories
- string[] customDirectories = new string[] {"folder1","folder2"};
- // the gallery will use these images in this instance
- ImageGallery1.CurrentDirectories = customDirectories;
- }
- // modify the images allowed
- if (currentFolder == "~/images") {
- System.IO.DirectoryInfo directoryInfo = new System.IO.DirectoryInfo(Server.MapPath(currentFolder));
- // these are the default images FTB:ImageGallery will find
- System.IO.FileInfo[] defaultImages = directoryInfo.GetFiles("*");
- // user defined custom images (here, we're just allowing the first two)
- System.IO.FileInfo[] customImages = new System.IO.FileInfo[2] {defaultImages[0], defaultImages[1]};
- // the gallery will use these images in this instance
- ImageGallery1.CurrentImages = customImages;
- }
- }
- </script>
- <html>
- <head>
- <title>Image Gallery</title>
- </head>
- <body>
- <form id="Form1" runat="server" enctype="multipart/form-data">
- <FTB:ImageGallery id="ImageGallery1"
- JavaScriptLocation="ExternalFile"
- UtilityImagesLocation="ExternalFile"
- SupportFolder="~/admin/FreeTextBox/"
- AllowImageDelete=true AllowImageUpload=true AllowDirectoryCreate=true AllowDirectoryDelete=true runat="Server" />
- </form>
- </body>
- </html>