程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net HTML文件上傳標簽

asp.net HTML文件上傳標簽

編輯:ASP.NET基礎
微軟提供的控件http://www.jb51.net/codes/9709.html
前台
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>html文件上傳標簽</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="File1" type="file" runat="server" />
<asp:Button ID="btn_up" runat="server" Text="上傳" OnClick="btn_up_Click" />
</div>
</form>
</body>
</html>
後台
protected void btn_up_Click(object sender, EventArgs e)
{
string spath = Server.MapPath("~/test/");
string filename = File1.PostedFile.FileName;
int idx = filename.LastIndexOf(@"\");
string shortname = filename.Substring(idx + 1);//獲得文件名
this.File1.PostedFile.SaveAs(spath + shortname);
}
end
官方給出的使用方法:
需要在要目錄下新建兩個目錄:upfile和upimg
添加一個FileUpload控件.一個Button.一個Image.一個Label


關鍵代碼:
string name = FileUpload1.FileName;//獲得上傳文件的名字.
string size = FileUpload1.PostedFile.ContentLength.ToString();//文件大小.
string type = FileUpload1.PostedFile.ContentType;//文件類型.
string type2 = name.Substring(name.LastIndexOf(".") + 1);//LastIndexOf()最後一個索引位置匹配.Substring()裡面的+1是重載.
string ipath = Server.MapPath("upimg") + "\\" + name;//取得根目錄下面的upimg目錄的路徑.
string fpath = Server.MapPath("upfile") + "\\" + name;
string wpath = "upimg\\" + name;//獲得虛擬路徑.
if (type2 == "jpg" || type2 == "gif" || type2 == "bmp" || type2 == "png")
{
FileUpload1.SaveAs(ipath);//保存方法,參數是一個地址字符串.
Image1.ImageUrl = wpath;
Label1.Text = "你傳的文件名是:" + name + "<br>文件大小為:" + size + "字節<br>文件類型是:" + type +
"<br>後綴是:" + type2 + "<br>實際路徑是:" + ipath + "<br>虛擬路徑是:" + fpath;
Image1.Visible = true;
}
else
{
Image1.Visible = false;
FileUpload1.SaveAs(fpath);
Label1.Text = "你傳的文件名是:" + name + "<br>文件大小為:" + size + "字節<br>文件類型是:" + type +
"<br>後綴是:" + type2 + "<br>實際路徑是:" + ipath + "<br>虛擬路徑是:" + fpath;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved