日期:2014-05-18  浏览次数:20519 次

寻找 好用的.net 在线编辑器
需要一个.net在线编辑器,我找过不少都带图片上传功能的,我需要一个带图片插入但不能上传的,当然能设置上传功能是否开启就最好了


------解决方案--------------------
fckeditor
------解决方案--------------------
fckeditor
http://www.fckeditor.net/
------解决方案--------------------
fck,Treetextbox都可
------解决方案--------------------
http://www.syc958.cn/bbs/showtopic-72.aspx
------解决方案--------------------
4、文件管理功能、文件上传的权限问题
  一直以后FCKeditor的文件管理部分的安全是个值得注意,但很多人没注意到的地方,虽然FCKeditor在各个Release版本中一直存在的一个功能就是对上传文件类型进行过滤,但是她没考虑过另一个问题:到底允许谁能上传?到底谁能浏览服务器文件?
  之前刚开始用FCKeditor时,我就出现过这个问题,还好NetRube(FCKeditor中文化以及FCKeditor ASP版上传程序的作者)及时提醒了我,做法是去修改FCK上传程序,在里面进行权限判断,并且再在fckconfig.js里把相应的一些功能去掉。但随之FCK版本的不断升级,每升一次都要去改一次配置程序fckconfig.js,我发觉厌烦了,就没什么办法能更好的控制这种配置么?事实上,是有的。
  在fckconfig.js里面,有关于是否打开上传和浏览服务器的设置,在创建FCKeditor时,通过程序来判断是否创建有上传浏览功能的编辑器。首先,我先在fckconfig.js里面把所有的上传和浏览设置全设为false,接着我使用的代码如下:
  ASP版本: <% 
Dim oFCKeditor 
Set oFCKeditor = New FCKeditor 
with oFCKeditor 
.BasePath = fckPath 
.Config("ToolbarLocation") = "OutckToolBar" 
if request.cookies(site_sn)("issuper")="yes" then 
.Config("LinkBrowser") = "true" 
.Config("ImageBrowser") = "true" 
.Config("FlashBrowser") = "true" 
.Config("LinkUpload") = "true" 
.Config("ImageUpload") = "true" 
.Config("FlashUpload") = "true" 
end if 
.ToolbarSet = "Basic" 
.Width = "100%" 
.Height = "200" 
.Value = "" 
.Create "jcontent" 
%>

  JAVASCRIPT版本: var oFCKeditor = new FCKeditor( 'fbContent' ) ; 
<%if power = powercode then%> 
oFCKeditor.Config['LinkBrowser'] = true ; 
oFCKeditor.Config['ImageBrowser'] = true ; 
oFCKeditor.Config['FlashBrowser'] = true ; 
oFCKeditor.Config['LinkUpload'] = true ; 
oFCKeditor.Config['ImageUpload'] = true ; 
oFCKeditor.Config['FlashUpload'] = true ; 
<%end if%> 
oFCKeditor.ToolbarSet = 'Basic' ; 
oFCKeditor.Width = '100%' ; 
oFCKeditor.Height = '200' ; 
oFCKeditor.Value = '' ; 
oFCKeditor.Create() ; 


FCKPageCommand.prototype.Execute = function() 

window.alert("It works!"); 


------解决方案--------------------
fckeditor
楼上这么多一致的答案
------解决方案--------------------
cutediter还不错。FckEditer要设置好不然有上次漏洞
------解决方案--------------------
fckeditor 我用过的 很方便 直接拿一个配好的用就ok了
------解决方案--------------------
探讨
fckeditor
http://www.fckeditor.net/

------解决方案--------------------
fck,freetextbox都可以.