×

Loading...

Hi, DeepYellow. Here is the sample code

File Input Element
<FORM ENCTYPE="multipart/form-data"
ACTION="urlToInvoke" METHOD="POST">
<P>First name: <INPUT TYPE="text">
<P>Last name: <INPUT TYPE="text">
<P>Brief description of the problem:
<P><INPUT TYPE="text" SIZE="45">
<P>Please attach a file with your event log.
<P>File name:<INPUT TYPE="file">
<P><INPUT TYPE="submit" VALUE="Submit Report">

</FORM>


As you submit the form, the file content, no matter how long it is, will go to the server as a request parameter.
Report