时间:2016-02-16 01:11 来源: 我爱IT技术网 作者:佚名
欢迎您访问我爱IT技术网,今天小编为你分享的编程技术是:【asp.net获取HTML表单File中的路径的方法】,下面是详细的讲解!
asp.net获取HTML表单File中的路径的方法
#region 上传文件到数据库和服务器
public void FN_UpFiles()
{
//遍历File表单元素
HttpFileCollection files=HttpContext.Current.Request.Files;
try
{
for (int iFile=0; iFile < files.Count; iFile++)
{
//检查文件扩展名字
HttpPostedFile postedFile=files[iFile];
string fileName="";//定义文件名
//string fileExtension="";
fileName=Path.GetFileName(postedFile.FileName);//得到上传文件的完整名称 即文件名+后缀名
int index=fileName.IndexOf(".");
string FileType=fileName.Substring(index).ToLower();//截取文件后缀名
//FileTypeImg="../FileTypeimg/" + hz + ".gif";
Guid fileGuid=Guid.NewGuid();//生成新的文件名称 以GUID命名防止文件名相同
string NewFileName=fileGuid.ToString();//新的文件名
NewFileName=NewFileName + FileType;//新的文件名+后缀名
if (postedFile.ContentLength > 2097151 * 1024)//判断是否大于配置文件中的上传文件大小
{
Page.RegisterStartupScript("提示", "<script language='javascript'>alert('对不起您的上传资源过大!');return;</script>");
return;
}
else
{
if (fileName !="")//如果文件名不为空
{
try
{
//文件虚拟路径
string strpath=System.Web.HttpContext.Current.Server.MapPath("~/Upload/") + NewFileName;
try
{
NRModel.File model=new NRModel.File();
NRBLL.File bf=new NRBLL.File();
Guid guid1=Guid.NewGuid();
Guid guid2=new Guid(FolderId);
Guid guid3=Guid.NewGuid();
Guid guid4=Guid.NewGuid();
model.Fileid=guid1;
model.Folderid=guid2;
model.Filepath=strpath;
model.FileNam=fileName;
model.FileSize=postedFile.ContentLength;
model.Decription=TextArea1.Value.ToString();
model.CreateOn=DateTime.Now;
model.CreateBy=guid3;
model.ModefyBy=guid4;
if (bf.FN_AddNewRes(model) > 0)
{
NR.Error.Log.LogType("上传资源" + fileName + "成功!" + "服务器路径:" + strpath);
//保存文件到指定目录(虚拟目录)
postedFile.SaveAs(System.Web.HttpContext.Current.Server.MapPath("~/Upload/") + NewFileName);
//Page.RegisterStartupScript("提示", "<script language='javascript'>alert('上传成功!');self.opener.location.reload();window.close();</script>");
AlertMsg("上传成功!");
}
}
catch (Exception ex)
{
NR.Error.Log.LogType(ex.ToString());
}
}
catch (Exception ex)
{
NR.Error.Log.LogType(ex.ToString());
}
}
else
{
Response.Write("上传文件不能为空!");
NR.Error.Log.LogType("文件不能为空!");
}
}
}
}
catch (System.Exception ex)
{
NR.Error.Log.LogType(ex.ToString());
}
}
#endregion
关于asp.net获取HTML表单File中的路径的方法的用户互动如下:
相关问题:
答: >>详细
相关问题:
答: >>详细
相关问题:
答: >>详细
- 【asp】asp.net url重写浅谈-net-url重写
- 【DataSet】DataSet、DataTable、DataRow区别详解
- 【asp】asp.net 动态添加多个用户控件-net-动态添
- 【ASP】ASP.NET中内嵌页面代码的一个问题-NET-内
- 【As】Asp.net中的页面乱码的问题-sp--pn-ne-et
- 【增加记录】asp.net中获取新增加记录的ID Access
- 【创建】ASP.NET Web API教程 创建域模型的方法详
- 【Asp】Asp.net 页面调用javascript变量的值-net-
- 【ASP】ASP.NET 5升级后如何删除旧版本的DNX-NET5
- 【404页面】ASP.NET设置404页面返回302HTTP状态码
- 评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)
-
