BBjspWebRequest::getFileUpload (Deprecated)
The BBJSP system is deprecated. For new development, use BBxServlet.
Description
In BBj 16.0 and higher, this method returns a BBjFileUpload object available in a BBjspWebRequest object.
Syntax
Return Value |
Method |
getFileUpload(string name) |
Parameters
Variable |
Description |
name |
the 'name' of input element from the HTML form |
Return Value
returns a BBjFileUpload object
Remarks
The example below demonstrates how to process uploaded files in a BBjspWebRequest and get the associated BBjFileUpload Object by name.
Example
This example demonstrates how this works in a BBJSP web-page
<%@ taglib uri='/WEB-CFG/tld/core.tld' prefix='c' %> |
This example demonstrates how this works in a BBJSP servlet
class public MyServlet |