ASP.NET使用FileUpload上传文件_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > ASP.NET使用FileUpload上传文件

ASP.NET使用FileUpload上传文件

 2015/3/16 2:43:10  hvt  程序员俱乐部  我要评论(0)
  • 摘要:前台代码:<asp:FileUploadID="fuKeleyi"runat="server"/><asp:ButtonID="BtnUp"runat="server"onclick="BtnUp_Click"Text="上传"/><asp:LabelID="LabMsg"runat="server"></asp:Label>后台C#代码:usingSystem;usingSystem.Collections.Generic
  • 标签:.net ASP.NET file 使用 上传 文件 net 上传文件

前台代码:

class="html" name="code"><asp:FileUpload ID="fuKeleyi" runat="server" />
<asp:Button ID="BtnUp" runat="server" onclick="BtnUp_Click" Text="上 传" />
<asp:Label ID="LabMsg" runat="server"></asp:Label>

?

后台C#代码:

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace docnet
{
public partial class up : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}

protected void BtnUp_Click(object sender, EventArgs e)
{
if (fuKeleyi.HasFile)
{
string savePath = Server.MapPath("~/hovertreeupload/");//指定上传文件在服务器上的保存路径
//检查服务器上是否存在这个物理路径,如果不存在则创建
if (!System.IO.Directory.Exists(savePath))
{
System.IO.Directory.CreateDirectory(savePath);
}
savePath = savePath + "\\" + fuKeleyi.FileName;
fuKeleyi.SaveAs(savePath);
LabMsg.Text = string.Format("<a href='hovertreeupload/{0}'>hovertreeupload/{0}</a>", fuKeleyi.FileName);
}
else
{
LabMsg.Text = "你还没有选择上传文件!";
}
}
}
}

?asp.net cms 源码:http://hovertree.codeplex.com/

?

http://hvt.iteye.com/blog/2182470

上一篇: 网络基础知识、ASP.NET 核心知识(1)* 下一篇: 没有下一篇了!
发表评论
用户名: 匿名