ASP.NET HtmlInputFile 控件
asp.net htmlinputfile 控件
html 服务器控件定义和用法
htmlinputfile 控件用于控制 <input type="file"> 元素,该元素用于向服务器上传文件。
属性
属性 | 描述 |
---|---|
accept | 可接受的 mime 类型的列表。 |
attributes | 返回该元素的所有属性名称和值对。 |
disabled | 布尔值,指示是否禁用该控件。默认是 false。 |
id | 元素的唯一 id。 |
maxlength | 该元素中所允许的最大字符数。 |
name | 元素的名称。 |
postedfile | 获取对由客户端指定的上载文件的访问。 |
runat | 规定该控件是一个服务器控件。必须被设置为 "server"。 |
size | 元素的宽度。 |
style | 设置或返回被应用到控件的 css 属性。 |
tagname | 返回元素的标签名。 |
type | 元素的类型。 |
value | 元素的值。 |
visible | 布尔值,指示该控件是否可见。 |
实例
在本例中,我们在 .aspx 文件中声明了一个 htmlinputfile 控件,一个 htmlinputbutton 控件,以及三个 htmlgeneric 控件(记得把控件嵌套在 htmlform 控件中)。当提交按钮被触发时,会执行 submit 子例程。当文件本身被上传到服务器的 c 目录时,会在页面显示文件名和文件类型:
<script runat="server">
sub submit(sender as object, e as eventargs)
fname.innerhtml=myfile.postedfile.filename
clength.innerhtml=myfile.postedfile.contentlength
myfile.postedfile.saveas("c:uploadfile.txt")
end sub
</script>
<html>
<body>
<form method="post"
enctype="multipart/form-data" runat="server">
<p>
select file to upload to server:
<input id="myfile" type="file" size="40" runat="server">
</p>
<p>
<input type="submit" value="upload!" onserverclick="submit"
runat="server">
</p>
<p>
<div runat="server">
filename: <span id="fname" runat="server"/><br />
contentlength: <span id="clength" runat="server"/> bytes
</div>
</p>
</form>
</body>
</html>
sub submit(sender as object, e as eventargs)
fname.innerhtml=myfile.postedfile.filename
clength.innerhtml=myfile.postedfile.contentlength
myfile.postedfile.saveas("c:uploadfile.txt")
end sub
</script>
<html>
<body>
<form method="post"
enctype="multipart/form-data" runat="server">
<p>
select file to upload to server:
<input id="myfile" type="file" size="40" runat="server">
</p>
<p>
<input type="submit" value="upload!" onserverclick="submit"
runat="server">
</p>
<p>
<div runat="server">
filename: <span id="fname" runat="server"/><br />
contentlength: <span id="clength" runat="server"/> bytes
</div>
</p>
</form>
</body>
</html>
html 服务器控件
相关文章
- ASP Content Linking
- 在自己的 PC 上运行 ASP
- ASP Column 属性
- ASP DateLastAccessed 属性
- ASP DateLastModified 属性
- ASP Copy 方法
- ASP Delete 方法
- ASP Files 集合
- ASP Exists 方法
- ASP RemoveAll 方法
- ASP Pics 属性
- ASP ServerVariables 集合
- ASP StaticObjects 集合
- ASP Contents.RemoveAll 方法
- ASP Application_OnStart 和 Application_OnEnd 事件
- ASP HTMLEncode 方法
- ASP CopyFolder 方法
- ASP FileExists 方法
- ASP GetDriveName 方法
- ASP GetFolder 方法