upload.aspx
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. <%@ Import Namespace="System.IO" %> 
  2. <%@ page Language="C#" debug="true" codepage="936"%> 
  3. <html> 
  4. <head> 
  5. <title>文件上传,aspcool.com </title> 
  6. <script language="C#" runat="server">
  7. public void UploadFile(object sender , EventArgs E) 
  8. if(myFile.PostedFile!=null) 
  9. //定义一些变量 
  10. string nam = myFile.PostedFile.FileName ; 
  11. int i= nam.LastIndexOf("\") ; 
  12. string newnm =nam.Substring(i) ; 
  13. //改变下面的“c:\"到你想要保存的地址。 
  14. myFile.PostedFile.SaveAs("D:\"+newnm) ; 
  15. //取得上传文件的各种属性。 
  16. fname.Text=myFile.PostedFile.FileName; 
  17. fenc.Text=myFile.PostedFile.ContentType ; 
  18. fsize.Text=myFile.PostedFile.ContentLength.ToString(); 
  19. </script> 
  20. </head> 
  21. <body> 
  22. <h3> 文件上传演示</h3> 
  23. <form id="uploderform" method="post" action="upload.aspx" enctype="multipart/form-data" runat="server" > 
  24. <table border="1" cellspacing="0" cellpadding="0" > 
  25. <tr> <td><h5>选择文件</h5></td></tr> 
  26. <tr><td> 
  27. <input type="file" id="myFile" runat="server" NAME="myFile"> 
  28. </td></tr> 
  29. <tr><td> 
  30. <input type="button" value="Upload" OnServerClick="UploadFile" runat="server" ID="Button1" NAME="Button1"> 
  31. </td></tr> 
  32. </table> 
  33. </form>  
  34. <table border="1" cellspacing="0"> 
  35. <tr><td><b>文件资料</b></td> 
  36. <td> </td> 
  37. </tr> 
  38. <tr> 
  39. <td>文件名称 :</td> 
  40. <td><asp:label id="fname" text="" runat="server" /></td></tr> 
  41. <tr> 
  42. <td>文件类型 :</td> 
  43. <td><asp:label id="fenc" runat="server" /></td></tr> 
  44. <tr> 
  45. <td>文件大小 :(in bytes)</td> 
  46. <td><asp:label id="fsize" runat="server" /></td></tr> 
  47. </table>  
  48. <h5>你可以从 <a href="http://www.aspcool.com/download";>http://www.aspcool.com/download<;/a> 下载该程序.我们将给您提供更多的其它程序。如果有什么意见请到我的<a href="http://www.chaxiu.com/club/right.php?boardid=7&page=1";>ASP论坛</a>来讨论。</h5> 
  49. </center> 
  50. </body> 
  51. </html>