ajax 檔案上傳 代碼

來源:互聯網
上載者:User

ajax 檔案上傳 代碼

<%@ Import Namespace="System.IO" %>
<%@ page Language="C#" debug="true" %>
<html>
<head>
<title>ajax asp.net 上傳檔案 , </title>
<script language="C#" runat="server">
//This method is called when the "upload" button id pressed
public void UploadFile(object sender , EventArgs E)
{
   //檢查上傳檔案不為空白
   if(myFile.PostedFile!=null)
   {    
//string nam = myFile.PostedFile.FileName ;
//取得檔案名稱(抱括路徑)裡最後一個"."的索引
//int i= nam.LastIndexOf(".");
//取得副檔名
//string newext =nam.Substring(i);
//這裡我自動根據日期和檔案大小不同為檔案命名,確保檔案名稱不重複
//DateTime now = DateTime.Now;
//string newname=now.DayOfYear.ToString()+myFile.PostedFile.ContentLength.ToString();
//儲存檔案到你所要的目錄,這裡是IIS根目錄下的upload目錄.你可以改變.
//注意: 我這裡用Server.MapPath()取當前檔案的絕對目錄.在asp.net裡"\"必須用"\\"代替
//myFile.PostedFile.SaveAs(Server.MapPath("img/"+newname+newext));
 // myFile.PostedFile.SaveAs(Server.MapPath("img/" +));     
//得到這個檔案的相關屬性:檔案名稱,檔案類型,檔案大小
//fname.Text=myFile.PostedFile.FileName;
//fenc.Text=myFile.PostedFile.ContentType ;
//fsize.Text=myFile.PostedFile.ContentLength.ToString();
//fsize.Text = System.IO.Path.GetFileName(nam);

       string localname = System.IO.Path.GetFileName(myFile.Value);
       string path = myFile.PostedFile.FileName;
       myFile.PostedFile.SaveAs(Server.MapPath ("img/" + localname));
       fname.Text = localname;
       fenc.Text = System.IO.Path.GetExtension(path);
       filepath.Text = path;
       filebytes.Text = myFile.PostedFile.ContentLength.ToString();
   }
}


</script>
</head>
<body>
<center>
<h3> 檔案上傳的執行個體, 來自<a href="http://www.chinabs.net">中國BS網</a></h3>
<form id="uploderform" method="post" action="FileUpload.aspx" enctype="multipart/form-data" runat="server" >
<table border="1" cellspacing="2" cellpadding="2" >
<tr> <td><h5>選擇要上傳的檔案:</h5></td></tr>
<tr>
<td>
<input type="file" id="myFile" runat="server" NAME="myFile">
</td>
</tr>
<tr><td>
<input type="button" value="上 傳" OnServerClick="UploadFile" runat="server" ID="Button1" NAME="Button1">
</td></tr>
</table>
</form>
<br>
<br>
<table border="1" cellspacing="2">

<tr><td><b>檔案資料</b></td>
<td>&nbsp;</td>
</tr>
<tr>
<td>檔案名稱 :</td>
<td ><asp:label id="fname" text="" runat="server" /></td></tr>
<tr>
<td>檔案類型 :</td>
<td><asp:label id="fenc" runat="server" /></td></tr>
<tr>
<td>檔案路徑 :</td>
<td><asp:label id="filepath" runat="server" /></td></tr>
<tr>
<td>檔案大小 :</td>
<td><asp:label id="filebytes" runat="server" /></td></tr>
</table>

<br>
<br>
<br>
</center>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.