用 Asp.net 编写的上传程序

发表于:2007-09-07来源:作者:点击数: 标签:
<%@ Import Namespace="System.IO" %> <br> <%@ page Language="C#" de bug ="true" codepage="936"%> <br> <br> <html> <br> <head> <br> <title>文件上传,aspcool.com </title> <br> <script language="C#" runat="server"> <br
<%@ Import Namespace="System.IO" %> <br>
<%@ page Language="C#" debug="true" codepage="936"%> <br>
<br>
<html> <br>
<head> <br>
<title>文件上传,aspcool.com </title> <br>
<script language="C#" runat="server"> <br>
<br>
public void UploadFile(object sender , EventArgs E) <br>
{ <br>
<br>
if(myFile.PostedFile!=null) <br>
{ <br>
//定义一些变量 <br>
string nam = myFile.PostedFile.FileName ; <br>
int i= nam.LastIndexOf("\\") ; <br>
string newnm =nam.Substring(i) ; <br>
<br>
<br>


//改变下面的“c:\\"到你想要保存的地址。 <br>
myFile.PostedFile.SaveAs("c:\\"+newnm) ; <br>
<br>
//取得上传文件的各种属性。 <br>
fname.Text=myFile.PostedFile.FileName; <br>
fenc.Text=myFile.PostedFile.ContentType ; <br>
fsize.Text=myFile.PostedFile.ContentLength.ToString(); <br>

<br>
} <br>
} <br>
<br>
</script> <br>
</head>


<body> <center>
<h3> 文件上传演示,飞鹰制作 </h3> <br>
<form id="uploderform" method="post" action="upload.aspx" enctype="multipart/form-data" runat="server" > <br>
<br>
<table border="1" cellspacing="0" cellpadding="0" > <br>
<tr> <td><h5>选择文件</h5></td</tr> <br>
<tr><td> <br>
<input type="file" id="myFile" runat="server" > <br>
</td></tr> <br>
<tr><td> <br>
<input type="button" value="Upload" OnServerClick="UploadFile" runat="server" > <br>
</td></tr> <br>
</table> <br>
</form> <br>
<br> <br>
<br> <br>
<table border="1" cellspacing="0"> <br>
<tr><td><b>文件资料</b></td> <br>
<td> </td> <br>
</tr> <br>
<tr> <br>
<td>文件名称 :</td> <br>
<td><asp:label id="fname" text="" runat="server" /></td></tr> <br>
<tr> <br>
<td>文件类型 :</td> <br>
<td><asp:label id="fenc" runat="server" /></td></tr> <br>
<tr> <br>
<td>文件大小 :(in bytes)</td> <br>
<td><asp:label id="fsize" runat="server" /></td></tr> <br>
</table> <br>
<br>


<h5>你可以从 <a href="http://www.aspcool.com/download">http://www.aspcool.com/download</a> 下载该程序.我们将给您提供更多的其它程序。如果有什么意见请到我的<a href="http://www.chaxiu.com/club/right.php?boardid=7page=1">ASP论坛</a>来讨论。</h5> <br>
</center> <br>
</body> <br>
</html>


原文转自:http://www.ltesting.net