100分 一个关于freetextbox的问题 在线等
我用freetextbox在本地好好的 上传到服务器上面以后就有问题了
FreeTextBox has not been correctly installed. To install FreeTextBox either:
(1) add a reference to FtbWebResource.axd in web.config:
<system.web>
<httpHandlers>
<add verb="GET"
path="FtbWebResource.axd"
type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
</httpHandlers>
</system.web>
(2) Save the FreeTextBox image and javascript files to a location on your website and set up FreeTextBox as follows
<FTB:FreeTextBox id="FreeTextBox1" SupportFolder="ftbfileslocation" JavaScriptLocation="ExternalFile" ButtonImagesLocation="ExternalFile" ToolbarImagesLocation="ExternalFile" ButtonImagesLocation="ExternalFile" runat="server" />
高手帮忙看看 如果搞定100分就双手奉上 在线等
[解决办法]
http://www.cnblogs.com/soman/archive/2009/09/08/1562354.html
[解决办法]
推荐FCKEditor
[解决办法]
FCKeditor
[解决办法]
你要把本地的FreeTextBox.dll也要放到服务器上
[解决办法]
fckeditor
[解决办法]
应该是处于服务器安全考虑从而web应该被禁用了!真不知道怎么改的话换js编辑器吧!
[解决办法]
把FreeTextBox.dll放在项目的Bin文件夹下
[解决办法]
推荐 <DNTB:WebEditor 偶现在就在用 直接.Text 爽
[解决办法]
用fck吧!直接有个dll引用下 然后页面注册,直接在页面上用旧行了!
[解决办法]
sorry 这个更清楚些http://www.cnsx8.com/jxyj/jxcx/2009/1030/531.html
[解决办法]
- HTML code
<FTB:FreeTextBox id="FreeTextBox1" ToolbarLayout="ParagraphMenu, FontFacesMenu, FontSizesMenu, FontForeColorsMenu, FontForeColorPicker, FontBackColorsMenu, FontBackColorPicker, Bold, Italic, Underline, Strikethrough, Superscript, Subscript| 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,InsertImageFromGallery,Preview, SelectAll, EditStyle" runat="Server" ImageGalleryPath="~/Uploads" />
[解决办法]
[解决办法]
up
[解决办法]
.
[解决办法]
FtbWebResource.axd是什么。DLL是否正确引用
<%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
<FTB:FREETEXTBOX id="Freetextbox1" runat="server" Height="153" Width="95%" ImageGalleryPath="UploadFile" ButtonPath="../ftb/office2003/" HtmlModeDefaultsToMonoSpaceFont="True" HelperFilesPath="../ftb//" ToolbarLayout="paragraphmenu,fontsizesmenu,fontfacesmenu,fontforecolorsmenu,fontbackcolorsmenu;bold,italic,underline,strikethrough| superscript,subscript,removeformat;justifyleft,justifyright,justifycenter,justifyfull;bulletedlist,numberedlist,indent,outdent;inserttable,InsertimageFromGallery,CreateLink,UnLink,insertrule;cut,copy,paste,print,delete"></FTB:FREETEXTBOX>
[解决办法]
最好能把问题截个图片,再看看,
是否是没有引用或注册的问题都有可能,主要看问题是什么
[解决办法]
绝对是 扩展名为*.axd的应用程序在iis中没有映射!或 配置文件没设置对!
解决方法:
(1) 在服务器的IIS里有个默认的映射:就是将*.axd映射到aspnet_isapi.dll上。
webconfig里那么写的原理是,首先iis会把.axd的文件handle,然后就交给FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox这个命名的类来处理而不是让aspnet去处理。
(2)<system.web>
<httpHandlers>
<add verb="GET" path="FtbWebResource.axd" type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
</httpHandlers>
</system.web>
在web.config里加入这段语句
跟你一样的问题:参考网址http://topic.csdn.net/t/20050816/16/4212255.html