|
Web工程目錄demo,解壓FCKeditor_2.2.zip,保存在demo/FCKeditor下。用戶上傳文件目錄demo/UserFiles。 [ DefaultValue( "~/FCKeditor/" ) ] public string BasePath { get ![]() { object o = ViewState["BasePath"] ; ![]() if ( o == null ) o = System.Configuration.ConfigurationManager.AppSettings["FCKeditor:BasePath"] ;![]() return ( o == null ? "~/FCKeditor/" : (string)o ) ; }![]() set { ViewState["BasePath"] = value ; } }![]() 2.2修改FileWorkerBase.cs增加成員變量private const string DEFAULT_USER_FILES_DIR = "/UserFiles/"; protected string UserFilesDirectoryForUpload { get![]() { return Server.MapPath(DEFAULT_USER_FILES_DIR); }![]() } 在UserFilesPath屬性中增加return Request.ApplicationPath + DEFAULT_USER_FILES_DIR; |
|
|
來(lái)自: 悟靜 > 《.net和asp.net》