Asp.Net FckEditor在web.config中的配置
程序员文章站
2022-06-18 09:58:47
1、开发网站过程中fck配置:
1
2
1、开发网站过程中fck配置:
1
<appsettings>
2
<add key="fckeditor:basepath" value="~/fckeditor/"/>
3
<add key="fckeditor:userfilespath" value="/[网站名,如:oschina]/files/"/>
4
</appsettings>
2、发布网站时修改fck配置:
1
<appsettings>
2
<add key="fckeditor:basepath" value="~/fckeditor/"/>
3
<add key="fckeditor:userfilespath" value="/files/" />
4
</appsettings>
3、当网站发布到iis中后,需要将上传的图片重新传一遍,否则网页上看不到图片
网站结构为:网站名/其它文件及文件夹
/files
/default.x
/web.config
作者:sxq
1
<appsettings>
2
<add key="fckeditor:basepath" value="~/fckeditor/"/>
3
<add key="fckeditor:userfilespath" value="/[网站名,如:oschina]/files/"/>
4
</appsettings>
2、发布网站时修改fck配置:
1
<appsettings>
2
<add key="fckeditor:basepath" value="~/fckeditor/"/>
3
<add key="fckeditor:userfilespath" value="/files/" />
4
</appsettings>
3、当网站发布到iis中后,需要将上传的图片重新传一遍,否则网页上看不到图片
网站结构为:网站名/其它文件及文件夹
/files
/default.x
/web.config
作者:sxq
推荐阅读