Type: String
Returns "Yes", "Maybe", or "No" to indicate whether the browser supports the ability to have a user upload a file to your server from their browser (whether the browser supports RFC 1867).
The value "Maybe" is returned if the browser by default does not have this capability but it is possible that the user added a patch and/or plug-in to their system to allow this.
C# Example:
<html>File upload:
<% BrowserObj browObj = BrowserObj.GetBrowser();
Response.Write(browObj.FileUpload);
%>
</html>