FreeTextBox备忘

添加对4.0的dll文件引用

吧aspnet_client目录 copy到根目录下

设置文件上传目录属性ImageGalleryPath 

设置相册属性到 ftb.imagegallery.aspx位置,需要根据需要调整下里面的代码

/*
*FreeTextBox 设置
*FreeTextBox控间的 ImageGalleryPath 是文件上传保存的路径
*下面的设置是用户允许选择的目录
*与目录下可以选择的文件
* FreeTextBox会启动文件监视功能
* 插入图片是,FreeTextBox中至少有一个输入字符(可以是空格)
*/

<%@ Page Language="C#" ValidateRequest="false" Trace="false" %>
<%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
<script runat="server">
/*
 *FreeTextBox 设置
 *FreeTextBox控间的 ImageGalleryPath 是文件上传保存的路径
 *下面的设置是用户允许选择的目录
 *与目录下可以选择的文件
 * FreeTextBox会启动文件监视功能
 * 插入图片是,FreeTextBox中至少有一个输入字符(可以是空格)
 */
    private static string C_Dir = "~/ftbUpImgs";
protected void Page_Load(Object Src, EventArgs E) {
    
    // *** remove this return statement to use the following code ***
    //return;

    ImageGallery1.CurrentImagesFolder =C_Dir ;
    string currentFolder = ImageGallery1.CurrentImagesFolder;
    
    // modify the directories allowed
    if (currentFolder ==C_Dir)
    {

        // these are the default directories FTB:ImageGallery will find
        string[] defaultDirectories = System.IO.Directory.GetDirectories(Server.MapPath(currentFolder), "*");



        //// the gallery will use these images in this instance
        ImageGallery1.CurrentDirectories = new string[]{};// customDirectories;
    }
    
    
    // modify the images allowed
    if (currentFolder == C_Dir)
    {

        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 = defaultImages;// 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"   
            AllowImageDelete=false AllowImageUpload=true AllowDirectoryCreate=false AllowDirectoryDelete=false runat="Server" />
        
    </form>

</body>
</html>
View Code

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值