summaryrefslogtreecommitdiff
path: root/framework/Web/UI/WebControls/TFileUpload.php
diff options
context:
space:
mode:
authorxue <>2006-04-02 01:48:18 +0000
committerxue <>2006-04-02 01:48:18 +0000
commitf826b0ae6b8f11f8da1a5a6251e9a1fe6e6c1e85 (patch)
tree74d1aa11100d867bebcc94d1d871d896df055087 /framework/Web/UI/WebControls/TFileUpload.php
parent3f003a625159217eddedeaa02c999f76f351525e (diff)
Added TFileUpload and TJavascriptLogger tutorials.
Diffstat (limited to 'framework/Web/UI/WebControls/TFileUpload.php')
-rw-r--r--framework/Web/UI/WebControls/TFileUpload.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/framework/Web/UI/WebControls/TFileUpload.php b/framework/Web/UI/WebControls/TFileUpload.php
index ebb1b5ae..41ffaa7f 100644
--- a/framework/Web/UI/WebControls/TFileUpload.php
+++ b/framework/Web/UI/WebControls/TFileUpload.php
@@ -18,10 +18,11 @@
* that will be uploaded to the server. The property {@link getHasFile HasFile}
* indicates whether the file upload is successful. If successful, the file
* may be obtained by calling {@link saveAs} to save it at a specified place.
- * You can use {@link getFileName}, {@link getFileType}, {@link getFileSize}
- * to get the original client-side file name, the file mime type, and the
- * file size information. If the upload is not successful, {@link getErrorCode ErrorCode}
- * contains the error code describing the cause of failure.
+ * You can use {@link getFileName FileName}, {@link getFileType FileType},
+ * {@link getFileSize FileSize} to get the original client-side file name,
+ * the file mime type, and the file size information. If the upload is not
+ * successful, {@link getErrorCode ErrorCode} contains the error code
+ * describing the cause of failure.
*
* TFileUpload raises {@link onFileUpload OnFileUpload} event if a file is uploaded
* (whether it succeeds or not).