HtmlInputFile 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HtmlInputFile 클래스의 새 인스턴스를 초기화합니다.
public:
HtmlInputFile();
public HtmlInputFile ();
Public Sub New ()
예제
다음 코드 예제에서는 HtmlInputFile 클래스의 새 인스턴스를 만드는 방법을 보여 줍니다. 이 예제가 제대로 작동하려면 컴퓨터의 드라이브 C에 호출 Temp
된 디렉터리를 만들어야 합니다.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
void Button1_Click(object sender, EventArgs e)
{
// Get the HtmlInputFile control from the Controls collection
// of the PlaceHolder control.
HtmlInputFile file = (HtmlInputFile)Place.FindControl("File1");
// Make sure a file was submitted.
if (Text1.Value == "")
{
Span1.InnerHtml = "Error: You must enter a file name.";
return;
}
// Save the file.
if (file.PostedFile.ContentLength > 0)
{
try
{
file.PostedFile.SaveAs("c:\\temp\\" + Text1.Value);
Span1.InnerHtml = "File uploaded successfully to " +
"<b>c:\\temp\\" + Text1.Value + "</b> on the Web server.";
}
catch (Exception exc)
{
Span1.InnerHtml = "Error saving file <b>c:\\temp\\" +
Text1.Value + "</b><br />" + exc.ToString() + ".";
}
}
}
void Page_Load(object sender, EventArgs e)
{
// Create a new HtmlInputFile control.
HtmlInputFile file = new HtmlInputFile();
file.ID = "File1";
// Add the control to the Controls collection of the
// PlaceHolder control.
Place.Controls.Clear();
Place.Controls.Add(file);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlInputFile Constructor Example</title>
</head>
<body>
<h3>HtmlInputFile Constructor Example</h3>
<form id="form1" enctype="multipart/form-data"
runat="server">
Specify the file to upload:
<asp:PlaceHolder id="Place"
runat="server"/>
<p>
Save as file name (no path):
<input id="Text1"
type="text"
runat="server" />
</p>
<p>
<span id="Span1"
style="font: 8pt verdana;"
runat="server" />
</p>
<p>
<input type="button"
id="Button1"
value="Upload"
onserverclick="Button1_Click"
runat="server" />
</p>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)
' Get HtmlInputFile control from the Controls collection
' of the PlaceHolder control.
Dim file As HtmlInputFile = _
CType(Place.FindControl("File1"), HtmlInputFile)
' Make sure a file was submitted.
If Text1.Value = "" Then
Span1.InnerHtml = "Error: You must enter a file name."
Return
End If
' Save the file.
If file.PostedFile.ContentLength > 0 Then
Try
file.PostedFile.SaveAs(("c:\temp\" & Text1.Value))
Span1.InnerHtml = "File uploaded successfully to " & _
"<b>c:\temp\" & Text1.Value & "</b> on the Web server."
Catch exc As Exception
Span1.InnerHtml = "Error saving file <b>c:\temp\" & _
Text1.Value & "</b><br />" & exc.ToString() & "."
End Try
End If
End Sub
Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
' Create a new HtmlInputFile control.
Dim file As HtmlInputFile = New HtmlInputFile()
file.ID = "File1"
' Add the control to the Controls collection of the
' PlaceHolder control.
Place.Controls.Clear()
Place.Controls.Add(file)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlInputFile Constructor Example</title>
</head>
<body>
<h3>HtmlInputFile Constructor Example</h3>
<form id="form1" enctype="multipart/form-data"
runat="server">
Specify the file to upload:
<asp:PlaceHolder id="Place"
runat="server"/>
<p>
Save as file name (no path):
<input id="Text1"
type="text"
runat="server" />
</p>
<p>
<span id="Span1"
style="font: 8pt verdana;"
runat="server" />
</p>
<p>
<input type="button"
id="Button1"
value="Upload"
onserverclick="Button1_Click"
runat="server" />
</p>
</form>
</body>
</html>
설명
이 생성자를 사용 하 여 만들고의 새 인스턴스를 초기화 하는 HtmlInputFile 클래스입니다.
다음 표에서 인스턴스에 대 한 초기 속성 값을 HtmlInputFile입니다.
속성 | 초기 값 |
---|---|
Type | "file" 리터럴 문자열입니다. |