Upload File |
|
 |
<client:uploadmodule/> |
|
|
The Upload a File module allows clients to upload files to the project site for use in the project.
The Upload File allows the following attributes:
from_title |
label for the from field |
from_field_size |
value of the size attribute used in the INPUT tag for the from field |
message_title |
label for the message area |
message_field_cols |
value of the cols attribute used in the TEXTAREA for messages |
message_field_rows |
value of the rows attribute used in the TEXTAREA for messages |
submit_value |
text of the submit button |
success_page |
page returned upon a successful upload |
to_title |
label for the to field |
upload_title |
label for the upload field |
upload_field_size |
value of the size attribute used in the INPUT tag for the upload field |
cellspacing |
HTML cell spacing for the table |
cellpadding |
HTML cell padding for the table |
border |
HTML border for the table |
width |
module width, same syntax as HTML table width |
title |
module title |
css_prefix |
All modules reference a common set of styles. If you want your module to have its own set of styles, define this set. Then the set will reference a style named css_prefix<style>. |
Sample of the Upload File:
<client:uploadmodule
title="Send a File"
cellspacing="0"
cellpadding="3"
border="0"
success_page="upload_file_success.jsp"/>
|