HtmlInputFile コンストラクタとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > HtmlInputFile コンストラクタの意味・解説 

HtmlInputFile コンストラクタ

HtmlInputFile クラス新しインスタンス初期化します。

名前空間: System.Web.UI.HtmlControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

public HtmlInputFile ()
public:
HtmlInputFile ()
public HtmlInputFile ()
public function HtmlInputFile ()
解説解説
使用例使用例

HtmlInputFile クラス新しインスタンス作成する方法次のコード例示します。この例を正常に動作させるには、コンピュータの C: ドライブTemp というディレクトリ作成する必要があります

<%@ Page Language="VB" AutoEventWireup="True"
 %>

<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>
  <head>
    <title>HtmlInputFile Constructor Example</title>
  </head>

<body>
 
   <h3>HtmlInputFile Constructor Example</h3>
 
   <form 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="C#" AutoEventWireup="True" %>

<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>
  <head>
    <title>HtmlInputFile Constructor Example</title>
  </head>

  <body>
 
   <h3>HtmlInputFile Constructor Example</h3>
 
   <form 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>
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「HtmlInputFile コンストラクタ」の関連用語

HtmlInputFile コンストラクタのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



HtmlInputFile コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS