网站导航网学 原创论文 原创专题 网站设计 最新系统 原创论文 论文降重 发表论文 论文发表 UI设计定制 论文答辩PPT格式排版 期刊发表 论文专题
返回网学首页
网学原创论文
最新论文 推荐专题 热门论文 论文专题
当前位置: 网学 > 设计资源 > .Net编程 > 正文

ASP.NET利用post方式上传文件

论文降重修改服务、格式排版等 获取论文 论文降重及排版 论文发表 相关服务

几经努力,终于实现了文件上传,不使用asp.net组件,而使用传统asp文件模板方式,方法如下:
上传文件界面模板:(upfile.htm)HTML如下:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4.     <title>无标题页</title> 
  5. </head> 
  6. <body> 
  7. <table width="100%"  border="0" cellpadding="0" cellspacing="0"> 
  8.    <form action="testup.aspx" method="post" name="form1" enctype="multipart/form-data"> 
  9.    <tr> 
  10.        <td> 
  11.        <input name="FileName" id="FileName" type="FILE" class="tx1" size="30">&nbsp; 
  12.        <input name="FileUrlID" type="hidden" id="FileUrlID" value="imgpath"> 
  13.        <input type="submit" name="Submit" value="上传" class="tx1"> 
  14.       </td> 
  15.   </tr> 
  16.   </form> 
  17. </table>   
  18. </body> 
  19. </html> 

处理页面的asp.net文件(testup.aspx)的testup.aspx.cs代码如下:

  1. using System; 
  2. using System.Collections; 
  3. using System.Configuration; 
  4. using System.Data; 
  5. using System.Web; 
  6. using System.Web.Security; 
  7. using System.Web.UI; 
  8. using System.Web.UI.HtmlControls; 
  9. using System.Web.UI.WebControls; 
  10. using System.Web.UI.WebControls.WebParts; 
  11. using diggcms.Content.Templet; 
  12. public partial class admin_testup : System.Web.UI.Page 
  13.     protected void Page_Load(object sender, EventArgs e) 
  14.     { 
  15.         Template t = new Template(); 
  16.         t.SetTemplateFile("upfile.htm"); 
  17.         function.Response(t.Parse()); 
  18.         if (function.getRequest("FileUrlID") != ""
  19.         { 
  20.             upfile(); 
  21.         }        
  22.     } 
  23.     /// <summary> 
  24.     /// 处理上传文件 
  25.     /// </summary> 
  26.     protected void upfile() 
  27.     { 
  28.         string _fileName,_filelx, _fileExtension,_filesize; 
  29.         string _savedir,_saveName; 
  30.         _savedir = Server.MapPath(@"upfile");   //保存在当前路径的upfile目录下 
  31.         HttpPostedFile myfile = Request.Files["FileName"]; 
  32.         _fileName = myfile.FileName;            //获取文件 
  33.         _filelx = myfile.ContentType;    //文件类型 
  34.         _filesize = myfile.ContentLength.ToString();  //文件大小 
  35.         _fileExtension = _fileName.Substring(_fileName.LastIndexOf("."), _fileName.Length - _fileName.LastIndexOf(".")); //扩展名 
  36.         _saveName = "测试" + _fileExtension;   //保存的文件名 
  37.         myfile.SaveAs(_savedir + "\\" + _saveName); 
  38.         Response.Write("保存成功"); 
  39.     } 
  40.   
  41. //OK处理完毕 
设为首页 | 加入收藏 | 网学首页 | 原创论文 | 计算机原创
版权所有 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2020 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号 常年法律顾问:王律师