PowerWEB File Upload for ASP.NET
TempPath Property
See Also  Send comments on this topic.
Dart.FileUpload Namespace > UploadManager Class : TempPath Property



The location where file data is temporarily saved during the upload process.

Syntax

Visual Basic (Declaration) 
<DartDescriptionAttribute("The location where file data is temporarily saved during the upload process. If this property is not set, files will be uploaded directly to the SavePath.  If both SavePath and TempPath are not set, files will be uploaded to server memory.")>
<DefaultValueAttribute()>
Public Property TempPath As String
Visual Basic (Usage)Copy Code
Dim instance As UploadManager
Dim value As String
 
instance.TempPath = value
 
value = instance.TempPath
C# 
[DartDescriptionAttribute("The location where file data is temporarily saved during the upload process. If this property is not set, files will be uploaded directly to the SavePath.  If both SavePath and TempPath are not set, files will be uploaded to server memory.")]
[DefaultValueAttribute()]
public string TempPath {get; set;}
C++/CLI 
[DartDescriptionAttribute("The location where file data is temporarily saved during the upload process. If this property is not set, files will be uploaded directly to the SavePath.  If both SavePath and TempPath are not set, files will be uploaded to server memory.")]
[DefaultValueAttribute()]
public:
property String^ TempPath {
   String^ get();
   void set (    String^ value);
}

Property Value

The default value is "".

Remarks

Set the TempPath to have file data saved to a temporary location before moving to the SavePath upon completion.

To stream data to memory, set the SavePath and the TempPath to empty strings.

Requirements

Target Platforms: Microsoft .NET Framework 2.0

See Also

Documentation Version 4.0.3
© 2012 Dart Communications. All Rights Reserved.