最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

收藏的asp.net文件上傳類源碼

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:45:39
文檔

收藏的asp.net文件上傳類源碼

收藏的asp.net文件上傳類源碼:namespace Wmj { public class MyUpload { private System.Web.HttpPostedFile postedFile=null; private string savePath=; private string extension=; private int fileLength=0; //顯示該組件使用的參數(shù)信息 public string Help { get{ string helpstring; helpst
推薦度:
導(dǎo)讀收藏的asp.net文件上傳類源碼:namespace Wmj { public class MyUpload { private System.Web.HttpPostedFile postedFile=null; private string savePath=; private string extension=; private int fileLength=0; //顯示該組件使用的參數(shù)信息 public string Help { get{ string helpstring; helpst

namespace Wmj 

public class MyUpload 

private System.Web.HttpPostedFile postedFile=null; 
private string savePath=""; 
private string extension=""; 
private int fileLength=0; 
//顯示該組件使用的參數(shù)信息 
public string Help 

get{ 
string helpstring; 
helpstring="<font size=3>MyUpload myUpload=new MyUpload(); //構(gòu)造函數(shù)"; 
helpstring+="myUpload.PostedFile=file1.PostedFile;//設(shè)置要上傳的文件"; 
helpstring+="myUpload.SavePath=\"e:\\\";//設(shè)置要上傳到服務(wù)器的路徑,默認(rèn)c:\\"; 
helpstring+="myUpload.FileLength=100; //設(shè)置上傳文件的最大長(zhǎng)度,單位k,默認(rèn)1k"; 
helpstring+="myUpload.Extension=\"doc\";設(shè)置上傳文件的擴(kuò)展名,默認(rèn)txt"; 
helpstring+="label1.Text=myUpload.Upload();//開(kāi)始上傳,并顯示上傳結(jié)果</font>"; 
helpstring+="<font size=3 color=red>Design By WengMingJun 2001-12-12 All Right Reserved!</font>"; 
return helpstring; 


public System.Web.HttpPostedFile PostedFile 

get 

return postedFile; 

set 

postedFile=value; 


public string SavePath 

get 

if(savePath!="") return savePath; 
return "c:\\"; 

set 

savePath=value; 


public int FileLength 

get 

if(fileLength!=0) return fileLength; 
return 1024; 

set 

fileLength=value*1024; 


public string Extension 

get 

if(extension!="") return extension; 
return "txt"; 

set 

extension=value; 


public string PathToName(string path) 

int pos=path.LastIndexOf("\\"); 
return path.Substring(pos+1); 

public string Upload() 

if(PostedFile!=null) 

try{ 
string fileName=PathToName(PostedFile.FileName); 
if(!fileName.EndsWith(Extension)) return "You must select "+Extension+" file!"; 
if(PostedFile.ContentLength>FileLength) return "File too big!"; 
PostedFile.SaveAs(SavePath+fileName); 
return "Upload File Successfully!"; 

catch(System.Exception exc) 
{return exc.Message;} 

return "Please select a file to upload!"; 



用csc /target:Library Wmj.cs 編譯成dll供以后多次調(diào)用 
調(diào)用舉例 
<%@page language="C#" runat="server"%> 
<%@import namespace="Wmj"%> 
<script language="C#" runat="server"> 
void Upload(object sender,EventArgs e) 

MyUpload myUpload=new MyUpload(); 
// label1.Text=myUpload.Help; 
myUpload.PostedFile=file1.PostedFile; 
myUpload.SavePath="e:\\"; 
myUpload.FileLength=100; 
label1.Text=myUpload.Upload(); 

</script> 
<form enctype="multipart/form-data" runat="server"> 
<input type="file" id="file1" runat="server"/> 
<asp:Button id="button1" Text="Upload" OnClick="Upload" runat="server"/> 
<asp:Label id="label1" runat="server"/> 
</form> 

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

收藏的asp.net文件上傳類源碼

收藏的asp.net文件上傳類源碼:namespace Wmj { public class MyUpload { private System.Web.HttpPostedFile postedFile=null; private string savePath=; private string extension=; private int fileLength=0; //顯示該組件使用的參數(shù)信息 public string Help { get{ string helpstring; helpst
推薦度:
標(biāo)簽: 收藏 文件 上傳
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top