Previous | Home | Next |
A form in an HTML document (Web page) can contain an input element with type="file". This may let the user include one or more files into the form submission.
Event

Property

Design Code
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Input(File)</title> </head> <body> <form id="form1" runat="server"> <div> <input id="File1" type="file" /> </div> </form> </body> </html>
Previous | Home | Next |