upload.aspx
资源名称:论坛源码.rar [点击查看]
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:2k
源码类别:
.net编程
开发平台:
C#
- <%@ Import Namespace="System.IO" %>
- <%@ page Language="C#" debug="true" codepage="936"%>
- <html>
- <head>
- <title>文件上传,aspcool.com </title>
- <script language="C#" runat="server">
- public void UploadFile(object sender , EventArgs E)
- {
- if(myFile.PostedFile!=null)
- {
- //定义一些变量
- string nam = myFile.PostedFile.FileName ;
- int i= nam.LastIndexOf("\") ;
- string newnm =nam.Substring(i) ;
- //改变下面的“c:\"到你想要保存的地址。
- myFile.PostedFile.SaveAs("D:\"+newnm) ;
- //取得上传文件的各种属性。
- fname.Text=myFile.PostedFile.FileName;
- fenc.Text=myFile.PostedFile.ContentType ;
- fsize.Text=myFile.PostedFile.ContentLength.ToString();
- }
- }
- </script>
- </head>
- <body>
- <h3> 文件上传演示</h3>
- <form id="uploderform" method="post" action="upload.aspx" enctype="multipart/form-data" runat="server" >
- <table border="1" cellspacing="0" cellpadding="0" >
- <tr> <td><h5>选择文件</h5></td></tr>
- <tr><td>
- <input type="file" id="myFile" runat="server" NAME="myFile">
- </td></tr>
- <tr><td>
- <input type="button" value="Upload" OnServerClick="UploadFile" runat="server" ID="Button1" NAME="Button1">
- </td></tr>
- </table>
- </form>
- <table border="1" cellspacing="0">
- <tr><td><b>文件资料</b></td>
- <td> </td>
- </tr>
- <tr>
- <td>文件名称 :</td>
- <td><asp:label id="fname" text="" runat="server" /></td></tr>
- <tr>
- <td>文件类型 :</td>
- <td><asp:label id="fenc" runat="server" /></td></tr>
- <tr>
- <td>文件大小 :(in bytes)</td>
- <td><asp:label id="fsize" runat="server" /></td></tr>
- </table>
- <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>
- </center>
- </body>
- </html>