|
前臺(tái)
<%@ 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文件上傳標(biāo)簽</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>
后臺(tái)
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
官方給出的使用方法:
需要在要目錄下新建兩個(gè)目錄:upfile和upimg
添加一個(gè)FileUpload控件.一個(gè)Button.一個(gè)Image.一個(gè)Label
關(guān)鍵代碼:
string name = FileUpload1.FileName;//獲得上傳文件的名字.
string size = FileUpload1.PostedFile.ContentLength.ToString();//文件大小.
string type = FileUpload1.PostedFile.ContentType;//文件類型.
string type2 = name.Substring(name.LastIndexOf(".") + 1);//LastIndexOf()最后一個(gè)索引位置匹配.Substring()里面的+1是重載.
string ipath = Server.MapPath("upimg") + "http://" + name;//取得根目錄下面的upimg目錄的路徑.
string fpath = Server.MapPath("upfile") + "http://" + name;
string wpath = "upimg//" + name;//獲得虛擬路徑.
if (type2 == "jpg" || type2 == "gif" || type2 == "bmp" || type2 == "png")
{
FileUpload1.SaveAs(ipath);//保存方法,參數(shù)是一個(gè)地址字符串.
Image1.ImageUrl = wpath;
Label1.Text = "你傳的文件名是:" + name + "<br>文件大小為:" + size + "字節(jié)<br>文件類型是:" + type +
"<br>后綴是:" + type2 + "<br>實(shí)際路徑是:" + ipath + "<br>虛擬路徑是:" + fpath;
Image1.Visible = true;
}
else
{
Image1.Visible = false;
FileUpload1.SaveAs(fpath);
Label1.Text = "你傳的文件名是:" + name + "<br>文件大小為:" + size + "字節(jié)<br>文件類型是:" + type +
"<br>后綴是:" + type2 + "<br>實(shí)際路徑是:" + ipath + "<br>虛擬路徑是:" + fpath;
}
AspNet技術(shù):asp.net HTML文件上傳標(biāo)簽,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。