FileUpload : FileUpload « Form « JavaScript Tutorial

JavaScript Tutorial
1. Language Basics
2. Operators
3. Statement
4. Development
5. Number Data Type
6. String
7. Function
8. Global
9. Math
10. Form
11. Array
12. Date
13. Dialogs
14. Document
15. Event
16. Location
17. Navigator
18. Screen
19. Window
20. History
21. HTML Tags
22. Style
23. DOM Node
24. Drag Drop
25. Object Oriented
26. Regular Expressions
27. XML
28. GUI Components
29. Dojo toolkit
30. jQuery
31. Animation
32. MS JScript
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript Tutorial » Form » FileUpload 
10. 8. 1. FileUpload

The FileUpload object represents a file upload box within an HTML form. An upload box is created by using the HTML tag and specifying the TYPE attribute as file.

The FileUpload object has specific properties and methods associated with it, which are shown in the following Table.

Property/MethodDescription
blur()Removes focus from FileUpload box
focus()Sets focus on FileUpload box
formReference form object containing FileUpload box
handleEvent()Handles specific event
nameHTML NAME attribute for FileUpload box
onBlurEvent handler for Blur event
onChangeEvent handler for Change event
onFocusEvent handler for Focus event
select()Selects input area for FileUpload box
typeHTML TYPE attribute for FileUpload box
valueString specifying pathname of selected file


<html>
    <head>
    <title>Example using FileUpload object </title>
    </head>
    <body>
    <script language="JavaScript">
    <!--
    function showname(){
        var  file = document.form1.uploadBox.value ;
        document.form1.filename.value = file ;
    }
    -->
    </script>
    <form name="form1">
    Click on browse to choose a file to send.
    <br>
    Click on the Send button to see the full path for the file sent.
    <br><br>
    File to send: <input type="file" name="uploadBox">
    <br><br>
    <input type="button" value="Send" name="get" onClick='showname()'>
    <br><br>
    <input type="text" name="filename" size="40">
    </form>
    </body>
    </html>
10. 8. FileUpload
10. 8. 1. FileUpload
10. 8. 2. FileUpload.blur()
10. 8. 3. FileUpload.focus()
10. 8. 4. FileUpload.form
10. 8. 5. Second Method of Referencing FileUpload Object Using the forms Elements Array
10. 8. 6. FileUpload.handleEvent()
10. 8. 7. FileUpload.name
10. 8. 8. FileUpload.onBlur
10. 8. 9. FileUpload.onChange
10. 8. 10. FileUpload.onFocus
10. 8. 11. FileUpload.select()
10. 8. 12. FileUpload.type
10. 8. 13. FileUpload.value
10. 8. 14. file Input Element
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.