主页 > 知识库 > asp.net获取HTML表单File中的路径的方法

asp.net获取HTML表单File中的路径的方法

热门标签:网站排名优化 百度AI接口 电商新玩法 科大讯飞语音识别系统 国美全国运营中心 电销业务 客户服务 人工智能
复制代码 代码如下:

#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
您可能感兴趣的文章:
  • 解决Vue项目打包后打开index.html页面显示空白以及图片路径错误的问题
  • JS/HTML5游戏常用算法之路径搜索算法 A*寻路算法完整实例
  • JS/HTML5游戏常用算法之路径搜索算法 随机迷宫算法详解【普里姆算法】
  • Python基于lxml模块解析html获取页面内所有叶子节点xpath路径功能示例
  • nginx配置访问图片路径以及html静态页面的调取方法
  • 如何使用php脚本给html中引用的js和css路径打上版本号
  • python输出当前目录下index.html文件路径的方法
  • C#正则表达式匹配HTML中的图片路径,图片地址代码
  • HTML 绝对路径与相对路径概念详细

标签:攀枝花 南平 咸宁 益阳 枣庄 POS机 厦门 拉萨

巨人网络通讯声明:本文标题《asp.net获取HTML表单File中的路径的方法》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266