summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/FileUpload.page
diff options
context:
space:
mode:
authorxue <>2006-04-02 01:48:18 +0000
committerxue <>2006-04-02 01:48:18 +0000
commitf826b0ae6b8f11f8da1a5a6251e9a1fe6e6c1e85 (patch)
tree74d1aa11100d867bebcc94d1d871d896df055087 /demos/quickstart/protected/pages/Controls/FileUpload.page
parent3f003a625159217eddedeaa02c999f76f351525e (diff)
Added TFileUpload and TJavascriptLogger tutorials.
Diffstat (limited to 'demos/quickstart/protected/pages/Controls/FileUpload.page')
-rw-r--r--demos/quickstart/protected/pages/Controls/FileUpload.page19
1 files changed, 18 insertions, 1 deletions
diff --git a/demos/quickstart/protected/pages/Controls/FileUpload.page b/demos/quickstart/protected/pages/Controls/FileUpload.page
index 873d4bc7..8aa5a0fb 100644
--- a/demos/quickstart/protected/pages/Controls/FileUpload.page
+++ b/demos/quickstart/protected/pages/Controls/FileUpload.page
@@ -4,7 +4,24 @@
<com:DocLink ClassPath="System.Web.UI.WebControls.TFileUpload" />
<p>
-TBD
+<tt>TFileUpload</tt> displays a file upload field on a Web page. Upon postback, the text entered into the field will be treated as the (local) name of the file that is uploaded to the server.
</p>
+<p>
+<tt>TFileUpload</tt> raises an <tt>OnFileUpload</tt> event when it is post back. The property <tt>HasFile</tt> indicates whether the file upload is successful or not. If successful, the uploaded file may be saved on the server by calling <tt>saveAs()</tt> method.
+</p>
+<p>
+The following properties give the information about the uploaded file:
+</p>
+<ul>
+ <li><tt>FileName</tt> - the original client-side file name without directory information.</li>
+ <li><tt>FileType</tt> - the MIME type of the uploaded file.</li>
+ <li><tt>FileSize</tt> - the file size in bytes.</li>
+ <li><tt>LocalName</tt> - the absolute file path of the uploaded file on the server. Note, this file will be deleted after the current page request is completed. Call <tt>saveAs()</tt> to save the uploaded file.</li>
+</ul>
+<p>
+If the file upload is unsuccessful, the property <tt>ErrorCode</tt> gives the error code describing the cause of failure. See <a href="http://www.php.net/manual/en/features.file-upload.errors.php">PHP documentation</a> for a complete explanation of the possible error codes.
+</p>
+
+<com:RunBar PagePath="Controls.Samples.TFileUpload.Home" />
</com:TContent> \ No newline at end of file