动态更改FckEditor上传目录的方法
在对应页面的OnInit事件内修改 Session["FCKeditor:UserFilesPath"] 对象的值。
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if( Request.QueryString["Path"]==null ){
Session["FCKeditor:UserFilesPath"] = "~/UpLoadFiles/"; //设置默认值
}else{
Session["FCKeditor:UserFilesPath"] = Request.QueryString["Path"];
}