HtmlInputFile.MaxLength プロパティとは? わかりやすく解説

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

HtmlInputFile.MaxLength プロパティ

クライアントコンピュータアップロードするファイルファイル パス最大長を取得または設定します

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

Dim instance As HtmlInputFile
Dim value As Integer

value = instance.MaxLength

instance.MaxLength = value
public int MaxLength { get;
 set; }
public:
property int MaxLength {
    int get ();
    void set (int value);
}
/** @property */
public int get_MaxLength ()

/** @property */
public void set_MaxLength (int
 value)
public function get MaxLength
 () : int

public function set MaxLength
 (value : int)

プロパティ
ファイル パス最大長。既定値は -1 です。このプロパティ設定されていないことを示します

解説解説
使用例使用例

MaxLength プロパティ使用してファイル パス入力できる文字数制限する方法次のコード例示します。この例を正常に動作させるには、コンピュータの C: ドライブTemp というディレクトリ作成する必要があります

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

<script language="VB" runat="server">

  Sub Button1_Click(ByVal Source As
 Object, ByVal e As EventArgs)
      
    ' 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 File1.PostedFile.ContentLength > 0 Then
      
      Try
        
        File1.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
  
</script>

<html>
  <head>
    <title>HtmlInputFile Example</title> 
  </head>
 
  <body>
 
    <h3>HtmlInputFile Sample</h3>
 
    <form enctype="multipart/form-data" 
          runat="server">
 
       Select File to Upload: 
       <input id="File1" 
              type="file"
              maxlength="30"
              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 Source, EventArgs e)
  {

    // Make sure a file was submitted.
    if (Text1.Value == "")
    {
      Span1.InnerHtml = "Error: You must enter a file name.";
      return;
    }

    // Save the file.
    if (File1.PostedFile.ContentLength > 0)
    {
      try
      {
        File1.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()
 + ".";
      }
    }
    Span1.InnerHtml = File1.MaxLength.ToString();
  }
 
</script>

<html>
  <head>
    <title>HtmlInputFile Example</title>
  </head>

  <body>
 
    <h3>HtmlInputFile Sample</h3>
 
    <form enctype="multipart/form-data" 
          runat="server">
 
       Select File to Upload: 
       <input id="File1" 
              type="file"
              maxlength="30"
              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="JScript" AutoEventWireup="True" %>

<script runat="server">

  function Button1_Click(source : Object, e : EventArgs){
      
    // Make sure a file was submitted.
    if(Text1.Value == "")
    {

      Span1.InnerHtml = "Error: You must enter a file name."
      return

    }
    
    // Save the file.
    if(File1.PostedFile.ContentLength > 0)
    {
        try
        {

          File1.PostedFile.SaveAs(("c:\\temp\\" + Text1.Value))
          Span1.InnerHtml = "File uploaded successfully to <b>c:\\temp\\"
                          + Text1.Value + "</b> on the Web server."

        }
        catch(exc : Exception)
        {

            Span1.InnerHtml = "Error saving file <b>c:\\temp\\"
                            + Text1.Value + "</b><br>" + exc.ToString()
 + "."

        }
    }

  }

</script>

<html>
  <head>
    <title>HtmlInputFile Example</title>
  </head>
 
  <body>
 
    <h3>HtmlInputFile Sample</h3>
 
    <form enctype="multipart/form-data" 
          runat="server">
 
       Select File to Upload: 
       <input id="File1" 
              type="file"
              maxlength="30"
              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>
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からHtmlInputFile.MaxLength プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からHtmlInputFile.MaxLength プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からHtmlInputFile.MaxLength プロパティ を検索

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

辞書ショートカット

すべての辞書の索引

HtmlInputFile.MaxLength プロパティのお隣キーワード
検索ランキング

   

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



HtmlInputFile.MaxLength プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS