제목 : File Field 서버 컨트롤을 사용한 간단한 파일 업로드
<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="UploadTest.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>WebForm1</title>
<meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
</HEAD>
<body>
<form id="Form1" method="post" encType="multipart/form-data" runat="server">
<P><FONT face="굴림">간단한 ASP.NET 파일 업로드 테스트</FONT></P>
<P>
<INPUT type="file" id="fileUpload" runat="server"></P>
<P>
<asp:Button id="btnSubmit" runat="server" Text="파일 업로드 하기"></asp:Button></P>
<P>
<asp:Label id="lblMsg" runat="server"></asp:Label></P>
<P><FONT face="굴림"></FONT> </P>
</form>
</body>
</HTML>