easyui的上傳文件
發布時間: 2024-02-26 03:06:56
Ⅰ easyui實現文件上傳
//前台需要參數指定調用一般處理程序里哪個方法
publicstringUploadFile()
{
stringresult="上傳成功";
try{
//接收上傳後的文件
HttpPostedFilefile=Context.Request.Files["imgPath4"];
//獲取文件的保存路徑
stringuploadPath=HttpContext.Current.Server.MapPath("~/_data/Files");
stringfileEx=Path.GetExtension(file.FileName);//文件的格式
stringdtStr=file.FileName.Replace(fileEx,"_")+DateTime.Now.ToString("yyyyMMddhhmmss");
//判斷上傳的文件是否為空
if(file!=null)
{
if(!Directory.Exists(uploadPath))
{
Directory.CreateDirectory(uploadPath);
}
//保存文件
file.SaveAs(HttpContext.Current.Server.MapPath("~/_data/Files/"+dtStr+fileEx));
filePath=HttpContext.Current.Server.MapPath("~/_data/Files/"+dtStr+fileEx);
}
}
catch(Exceptionex)
{
result="上傳失敗";
}
returnresult;
}
Ⅱ thinkphp easyui上傳文件保存資料庫的時候獲取不到uploadify里input值
一般情況下是你的js沒對,或者easyui沒寫對。我沒用過easyui
Ⅲ easyui 1.4 控制項filebox 怎麼在點擊上傳時觸發一個事件
綁定onChange事件就行了,filebox繼承自textbox,textbox的事件都可以作用於filebox
<input class="easyui-filebox" name="file1" data-options="onChange:function(){alert('change file')},prompt:'Choose a file...'" style="width:100%">
Ⅳ easyui中怎樣實現用uploadify上傳文件
要在web上實現你說的這個,只有一種方法:在web端使用ajax向伺服器a請求獲取伺服器b的地址,上傳文件的時候直接向b傳文件。
伺服器端的做法是,a伺服器端程序接收上傳文件後,再分配給其餘伺服器。
熱點內容