asp fckeditor自定義上傳文件的文件名
更新時(shí)間:2009年04月30日 00:45:40 作者:
上傳文件時(shí)如果遇到中文就很麻煩,但又不能讓用戶自己把文件名改后再上傳,所以直接把文件名自動生成了一下。
只需要在fckeditor\editor\filemanager\connectors\asp文件夾下的commands.asp修改一下即可
在這個(gè)文件中查找一下:FileUpload
會找到這個(gè)函數(shù)
把
Dim sFilePath
sFilePath = CombineLocalPaths(sServerDir, sFileName)
改為
Dim sFilePath,ranNum
Randomize
ranNum=int(90000*rnd)+10000
sFilePath = CombineLocalPaths(sServerDir, year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&"."&sExtension)
即可
在這個(gè)文件中查找一下:FileUpload
會找到這個(gè)函數(shù)
把
復(fù)制代碼 代碼如下:
Dim sFilePath
sFilePath = CombineLocalPaths(sServerDir, sFileName)
改為
復(fù)制代碼 代碼如下:
Dim sFilePath,ranNum
Randomize
ranNum=int(90000*rnd)+10000
sFilePath = CombineLocalPaths(sServerDir, year(now)&month(now)&day(now)&hour(now)&minute(now)&second(now)&"."&sExtension)
即可
您可能感興趣的文章:
- asp.net+FCKeditor上傳圖片顯示叉叉圖片無法顯示的問題的解決方法
- 修改fckeditor的文件上傳功能步驟
- 整合ckeditor+ckfinder,解決上傳文件路徑問題
- 通過Fckeditor把圖片上傳到獨(dú)立圖片服務(wù)器的方法
- ASp.net下fckeditor配置圖片上傳最簡單的方法
- FCKeditor編輯器添加圖片上傳功能及圖片路徑問題解決方法
- 為ckeditor編輯器加上傳圖片的功能
- Asp.net FCKEditor 2.6.3 上傳文件沒有權(quán)限解決方法
- FCKeditor ASP.NET 上傳附件研究
- CKEditor與dotnetcore實(shí)現(xiàn)圖片上傳功能
相關(guān)文章
使用ODBC數(shù)據(jù)庫管理Serv-U的FTP用戶及相關(guān)ASP編程[附源碼示例下載]
使用ODBC數(shù)據(jù)庫管理Serv-U的FTP用戶及相關(guān)ASP編程[附源碼示例下載]...2007-11-11asp下檢查表中是否存在某個(gè)字段(列)函數(shù)
asp可以方便的檢查數(shù)據(jù)庫表中,是否存在這個(gè)字段2008-03-03用Asp隱藏文件路徑,實(shí)現(xiàn)防盜鏈 的代碼
用Asp隱藏文件路徑,實(shí)現(xiàn)防盜鏈 的代碼...2007-11-11asp實(shí)現(xiàn)圖片右鍵滑輪控制大小的函數(shù)
asp實(shí)現(xiàn)圖片右鍵滑輪控制大小的函數(shù)...2007-08-08