在vs2008中运行ckeditor上传图片无法正常显示,ckeditor里的_sample html也一样.(图1)但不放在vs中ckeditor的例子就可以正常显示图片.
图片上传的浏览服务器功能也是不正常(图2)..已经加了CKFinder.SetupCKEditor(null, 'ckfinder/' );
ckfinder里的ckfinder.html是可以正常运作滴. Orz.......
麻烦大家帮帮忙,谢谢.....
代码:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>无标题页</title>
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
<script type="text/javascript" src="ckfinder/ckfinder.js"></script>
<script type="text/javascript" >
window.onload=function show()
{CKEDITOR.replace("Content"
,{
filebrowserBrowseUrl: '../ckfinder/ckfinder.html',
filebrowserImageBrowseUrl: '../ckfinder/ckfinder.html?Type=Images',
filebrowserFlashBrowseUrl: '../ckfinder/ckfinder.html?Type=Flash',
filebrowserUploadUrl:'../ckfinder/core/connector/aspx/connector.aspxcommand=QuickUpload&type=Files',
filebrowserImageUploadUrl:'../ckfinder/core/connector/aspx/connector.aspxcommand=QuickUpload&type=Images',
filebrowserFlashUploadUrl:'../ckfinder/core/connector/aspx/connector.aspxcommand=QuickUpload&type=Flash'
}
);
CKFinder.SetupCKEditor(null, 'ckfinder/' ) ;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:TextBox ID="Content" runat="server" TextMode="MultiLine" Height="250px" Width="500px" ></asp:TextBox>
</form>
</body>
</html>
图片:
1.
2.
和他的问题应该是一样的:http://space.cnblogs.com/question/13939/
可以参考:http://kb.cnblogs.com/a/1645072/
相对路径问题 在IIS下看看
你可以在这里下载了下,都是最新官网上的
全部配置好的.Ckeditor+ckfinderhttp://download.csdn.net/detail/king_jincheng/4995014
使用方法:
1、在页面<head>中引入ckeditor核心文件ckeditor.js
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
2、在使用编辑器的地方插入HTML控件<textarea>
<textarea id="TextArea1" cols="20" rows="2" class="ckeditor"></textarea>
如果是ASP.NET环境,也可用服务器端控件<TextBox>
<asp:TextBox ID="tbContent" runat="server" TextMode="MultiLine" class="ckeditor"></asp:TextBox>
注意在控件中加上 class="ckeditor" 。
3、将相应的控件替换成编辑器代码
<script type="text/javascript"> CKEDITOR.replace('TextArea1');//如果是在ASP.NET环境下用的服务器端控件<TextBox> CKEDITOR.replace('tbContent');//如果<TextBox>控件在母版页中,要这样写 CKEDITOR.replace('<%=tbContent.ClientID.Replace("_","$") %>');</script>