zoukankan      html  css  js  c++  java
  • 最新版FreeTextBox(版本3.1.6)在ASP.Net 2.0中使用简解

    简介:对于FreeTextBox(版本3.1.6)在ASP.Net 2.0中使用,只需要2个文件:FreeTextBox.DLL和ftb.imagegallery.aspx

    1。下载最新版FreeTextBox(版本3.1.6),解压
       FreeTextBox 3.1.6 (2006/07/18)
       博客园本地下载: https://files.cnblogs.com/cleo/FTBv3-1-6.zip
       作者网站下载地址:http://freetextbox.com/download/
       详细版本有哪些改进和修改历史可以看这里:http://freetextbox.com/download/changelog.aspx
    FreeTextBox 3.1.6 (2006/07/18)
        * BUG: Firefox postback problems (due to IE specific code)
        * CHANGE: createlink now requires text to be selected
        * BUG: FontSizesMenuList now functions correctly
        * BUG: IE users would see the tag path of the entire document
        * BUG: WordClean fix for 
    <b> tags
        * BUG: bug in FF vs. IE DOM handling of extra \n tag
       Free版本的收费版本的区别可以看这里:http://freetextbox.com/features/

    2。打开ASP.Net2.0项目,添加引用。(如果添加过以前版本的FreeTextBox,先删除以前版本的引用)
    2.1。拷贝ftb.imagegallery.aspx到你要使用FreeTextBox的目录(当然可以是其他,但是可能要设置路径)
    3。将FreeTextBox添加到工具栏。(工具栏〉常规〉选择项〉浏览到DLL文件,添加)
    4。可以将工具栏上的控件拖入到你的页面了
       
    <FTB:FreeTextBox ID="Free1"   ImageGalleryPath="~/ImageAdmin"   
            runat
    ="server" Text='<%# Bind("Contents") %>'
            ButtonDownImage="True"
            ToolbarLayout="ParagraphMenu,FontFacesMenu,FontSizesMenu,FontForeColorsMenu|Bold,Italic,Underline,Strikethrough;Superscript,Subscript,RemoveFormat|JustifyLeft,JustifyRight,JustifyCenter,JustifyFull;BulletedList,NumberedList,Indent,Outdent;CreateLink,Unlink,InsertImage,InsertImageFromGallery,InsertRule|Cut,Copy,Paste;Undo,Redo,Print">
            
    </FTB:FreeTextBox>

    4.1。修改ImageGalleryPath属性为你图片的放置目录。
    5。Q&A
    5.1。Q:怎么不能新建目录,上传文件等?
         A:修改ftb.imagegallery.aspx页面可以做到
              
    <FTB:ImageGallery id="ImageGallery1"
                SupportFolder
    ="~/aspnet_client/FreeTextBox/"
                AllowImageDelete
    ="true" AllowImageUpload="true"
                 AllowDirectoryCreate
    ="true" AllowDirectoryDelete="true" runat="Server" />

            修改AllowImageDelete等属性
    5.2。Q:怎么没有看到“从图片库插入图片”这个图标?
         A:修改<FTB:FreeTextBox />的ToolbarLayout属性,添加一个InsertImageFromGallery,上面代码的例子就是已经添加好的。
    5.3。Q:按钮怎么是英文提示?
         A:<FTB:FreeTextBox />有个属性叫做Language,把默认的en-US改称zh-CN吧,就是中文简体了,听说这个版本带了25种语言呢。

    新增博客园本地下载: https://files.cnblogs.com/cleo/FTBv3-1-6.zip
  • 相关阅读:
    一个好的时间函数
    Codeforces 785E. Anton and Permutation
    Codeforces 785 D. Anton and School
    Codeforces 510 E. Fox And Dinner
    Codeforces 242 E. XOR on Segment
    Codeforces 629 E. Famil Door and Roads
    Codeforces 600E. Lomsat gelral(Dsu on tree学习)
    Codeforces 438D The Child and Sequence
    Codeforces 729E Subordinates
    【ATcoder】D
  • 原文地址:https://www.cnblogs.com/goody9807/p/955297.html
Copyright © 2011-2022 走看看