新版FreeTextBox(版本3.1.6)在ASP.Net 2.0中使用简解
点击次数:31 次 发布日期:2008-11-26 12:01:19 作者:源代码网
|
源代码网推荐 源代码网推荐 1。下载最新版FreeTextBox(版本3.1.6),解压 源代码网推荐 FreeTextBox 3.1.6 (2006/07/18) 下载地址: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 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,FontForeColorsMenuBold,Italic,Underline,Strikethrough;Superscript,Subscript,RemoveFormatJustifyLeft,JustifyRight,JustifyCenter,JustifyFull;BulletedList,NumberedList,Indent,Outdent;CreateLink,Unlink,InsertImage,InsertImageFromGallery,InsertRuleCut,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种语言呢。 源代码网推荐 http://www.cnblogs.com/cleo/archive/2007/01/16/freetextbox3_1_6.html 源代码网推荐 源代码网推荐 源代码网推荐 做人要厚道,请注明转自酷网动力(www.ASPCOOL.COM)。 源代码网推荐 源代码网供稿. |
