FreeTextBoxb

所属分类:其他
开发工具:ASP
文件大小:1947KB
下载次数:0
上传日期:2018-06-21 08:16:34
上 传 者冯拴
说明:  The most popular free ASP.NET that the rich text editor, can customize the editor interface, including Office 2000/Office XP/Office 2003 interface speed, good features, can support multiple browsers

文件列表:
aspnet_client (0, 2010-06-15)
aspnet_client\FreeTextBox (0, 2010-06-15)
aspnet_client\FreeTextBox\FTB-FreeTextBox.js (50769, 2009-02-11)
aspnet_client\FreeTextBox\FTB-ImageGallery.js (9392, 2006-05-10)
aspnet_client\FreeTextBox\FTB-Pro.js (94519, 2009-02-11)
aspnet_client\FreeTextBox\FTB-ToolbarItems.js (3371, 2006-06-17)
aspnet_client\FreeTextBox\FTB-Utility.js (9616, 2009-07-28)
aspnet_client\FreeTextBox\images (0, 2010-06-15)
aspnet_client\FreeTextBox\images\bold.gif (865, 2005-02-28)
aspnet_client\FreeTextBox\images\bulletedlist.gif (138, 2005-02-28)
aspnet_client\FreeTextBox\images\buttons.gif (7128, 2005-02-28)
aspnet_client\FreeTextBox\images\buttons.png (8340, 2005-02-28)
aspnet_client\FreeTextBox\images\copy.gif (373, 2005-02-28)
aspnet_client\FreeTextBox\images\createlink.gif (429, 2005-02-28)
aspnet_client\FreeTextBox\images\csharp.gif (140, 2005-02-28)
aspnet_client\FreeTextBox\images\css (0, 2010-06-15)
aspnet_client\FreeTextBox\images\css\Thumbs.db (6656, 2009-02-11)
aspnet_client\FreeTextBox\images\css\toolbarbutton.off.out.gif (43, 2005-02-28)
aspnet_client\FreeTextBox\images\css\toolbarbutton.off.over.gif (266, 2005-02-28)
aspnet_client\FreeTextBox\images\css\toolbarbutton.on.out.gif (266, 2005-02-28)
aspnet_client\FreeTextBox\images\css\toolbarbutton.on.over.gif (266, 2005-02-28)
aspnet_client\FreeTextBox\images\css\toolbarbutton.over.gif (148, 2005-02-28)
aspnet_client\FreeTextBox\images\cut.gif (342, 2005-02-28)
aspnet_client\FreeTextBox\images\delete.gif (234, 2005-02-28)
aspnet_client\FreeTextBox\images\deletetablecolumn.gif (331, 2005-02-28)
aspnet_client\FreeTextBox\images\deletetablerow.gif (344, 2005-02-28)
aspnet_client\FreeTextBox\images\editstyle.gif (599, 2005-02-28)
aspnet_client\FreeTextBox\images\edittable.gif (632, 2005-02-28)
aspnet_client\FreeTextBox\images\edittablecell.gif (634, 2005-02-28)
aspnet_client\FreeTextBox\images\edittablerow.gif (977, 2005-02-28)
aspnet_client\FreeTextBox\images\fontbackcolorpicker.gif (212, 2005-02-28)
aspnet_client\FreeTextBox\images\fontforecolorpicker.gif (229, 2005-02-28)
aspnet_client\FreeTextBox\images\iespellcheck.gif (369, 2005-02-28)
aspnet_client\FreeTextBox\images\indent.gif (138, 2005-02-28)
aspnet_client\FreeTextBox\images\insertbutton.gif (163, 2005-02-28)
aspnet_client\FreeTextBox\images\insertcheckbox.gif (149, 2005-02-28)
aspnet_client\FreeTextBox\images\insertdate.gif (301, 2005-02-28)
aspnet_client\FreeTextBox\images\insertdiv.gif (173, 2005-02-28)
aspnet_client\FreeTextBox\images\insertdropdownlist.gif (156, 2005-02-28)
aspnet_client\FreeTextBox\images\insertform.gif (99, 2005-02-28)
... ...

For furhter installation instructions, please visit http://wiki.freetextbox.com/ ********************************************* Requirements: ********************************************* - .NET Framework 1.1, 2.0, 3.5, or 4.0 - IIS 5.0, 6.0, 7.0 ********************************************* Installation of dll ********************************************* 1. Copy the appropriate FreeTextBox.dll from Framework-X.X into your /bin/ folder 2. If you have a license file, copy FreeTextBox.lic into the /bin/ folder next to FreeTextBox.dll ********************************************* Installing the FreeTextBox support files ********************************************* FreeTextBox uses JavaScript, images, and xml files. To correctly install FreeTextBox, you must install these files. FreeTextBox has two ways of accessing these files: 1. Internal Resources - All the images, javascript and xml can be streamed from inside the FreeTextBox.dll. For ASP.NET 1.0 and 1.0, you need to add the following httpHandler to web.config: For ASP.NET 4.0, you'll need to add to allow HTML to be posted If you are attempting to use this method and having trouble, please view the source code of your page and see where FtbWebResource.axd is being referenced. If it appears incorrect, please set FreeTextBox.AssemblyResourceHandlerPath to the appropriate directory where you have set your web.config. 2. External Files - If you prefer not to use the internal JavaScript and image resources you can also have FreeTextBox link to external files which default to ~/aspnet_client/FreeTextBox/. To use this, you need to do the following: - Tell FreeTextBox which kind of files to look for external resources: JavaScriptLocation=ExternalFile, ToolbarImages=ExternalFile, ButtonImagesLocation=ExternalFile - Set the SupportFolder property of your FreeTextBox instance to the directory where you copied the files. For example, if your website is stored at www.mysite.com/FreeTextBoxFiles/, you should set SupportFolder="/FreeTextBoxFiles/". ********************************************* Using FreeTextBox ********************************************* To add FreeTextBox to an ASP.NET page, do the following: 1. Add the following lines to the top of your page: <@% Page ValidateRequest="false" %> <%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %> 2. Add the following code between
tags: Here's a complete example <@% Page ValidateRequest="false" %> <%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %> FreeTextBox Test ********************************************* Customizing FreeTextBox ********************************************* FreeTextBox has as default set of buttons and dropdownlists in its toolbars. If you would like to customize the buttons, there are three methods you can use. 1. ToolbarLayout String This property accepts a string of ToolbarItem names. Use commas ( , ) to separate items. A pipe ( | ) will insert a ToolbarSeparator and a semicolon ( ; ) will start a new Toolbar. The default way to configure toolbars is to use use the propery ToolbarLayout <@% Page ValidateRequest="false" %>
Valid values for ToolbarButtons and ToolbarDropDownLists are ParagraphMenu, FontFacesMenu, FontSizesMenu, FontForeColorsMenu, FontForeColorPicker, FontBackColorsMenu, FontBackColorPicker, Bold, Italic, Underline, Strikethrough, Superscript, Subscript, InsertImageFromGallery, CreateLink, Unlink, RemoveFormat, JustifyLeft, JustifyRight, JustifyCenter, JustifyFull, BulletedList, NumberedList, Indent, Outdent, Cut, Copy, Paste, Delete, Undo, Redo, Print, Save, ieSpellCheck, StyleMenu, SymbolsMenu, InsertHtmlMenu, InsertRule, InsertDate, InsertTime, WordClean, InsertImage, InsertTable, EditTable, InsertTableRowBefore, InsertTableRowAfter, DeleteTableRow, InsertTableColumnBefore, InsertTableColumnAfter, DeleteTableColumn, InsertForm, InsertForm, InsertTextBox, InsertTextArea, InsertRadioButton, InsertCheckBox, InsertDropDownList, InsertButton, InsertDiv, InsertImageFromGallery, Preview, SelectAll, EditStyle The following values are only available in Pro versions of FreeTextBox (or if running on localhost) FontForeColorPicker, FontBackColorPicker, EditTable InsertTableRowAfter, DeleteTableRow, InsertTableColumnBefore, InsertTableColumnAfter, DeleteTableColumn, InsertForm, InsertForm, InsertTextBox, InsertTextArea, InsertRadioButton, InsertCheckBox, InsertDropDownList, InsertButton, InsertDiv, Preview, SelectAll, EditStyle, WordClean 2. Procedurally You can define which toolbar items appear by adding ToolbarItems in much the same way that one would add DataGrid Columns to a DataGrid. In order to do this, set AutoGenerateToolbarLayoutFromString=false:
3. Code (Page_Load or Code Behind) ToolbarButtons and ToolbarDropDownLists can also be set through code. You should set the property AutoGenerateToolbarsFromString to false if you want only the ToolbarItems you define.

近期下载者

相关文件


收藏者