Blog信息 |
blog名称:注册会计师(注会)练习软件 日志总数:398 评论数量:116 留言数量:27 访问次数:3269048 建立时间:2005年6月6日 |

| |
[delpih编程]FCKEditor在asp.net中被动态改路径后出问题(delphi.net) 软件技术
吕向阳 发表于 2009/3/17 13:33:24 |
Session.add('FCKeditor:UserFilesPath', abcblog/userfiles/');
FCKeditor1.BasePath := Request.ApplicationPath +
‘FCKEditor/';
这是我原先程序中动态改变'FCKeditor路径的程序,今天花了好长时间
才调试出问题出在这。
本来在WEB.CONFIG中设好就一劳永逸了,不需这么花时间的。
设置如下:
设置如下: <appSettings>
<add key="FCKeditor:BasePath" value="/FCKeditor/"/> <!--FCKeditor用户附件上传路径--> <add key="FCKeditor:UserFilesPath" value ="/userfiles"/> </appSettings>
|
|
|