ContentTransferEncoding Property

Object: SoftArtisans.FileUp
Syntax: ContentTransferEncoding
Type: String
Read/Write: Read Only
Description:

This property is typically blank, but may contain the MIME Content Transfer Encoding.

If there is more than one file being uploaded in a single page, only the first one will be displayed.

To examine the Content Transfer Encoding of multiple files in a single upload, there is an equivalent property for each file object, i.e., fileUpload.Form("File1").ContentTransferEncoding.

Examples:
ASP The Content Transfer Encoding of this upload is:
<%=fileUpload.ContentTransferEncoding%>.
C# results.Append("The Content Transfer Encoding of this upload is: " +
fileUpload.ContentTransferEncoding);
VB.NET results.Append("The Content Transfer Encoding of this upload " + _
"is: " + fileUpload.ContentTransferEncoding)

Copyright © 2010 SoftArtisans, Inc. All rights reserved.