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



The location where files are saved when uploads are completed.

Syntax

Visual Basic (Declaration) 
<DefaultValueAttribute()>
<DartDescriptionAttribute("The location where files are saved when uploads are completed.  If the TempPath 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.")>
Public Property SavePath As String
Visual Basic (Usage)Copy Code
Dim instance As UploadManager
Dim value As String
 
instance.SavePath = value
 
value = instance.SavePath
C# 
[DefaultValueAttribute()]
[DartDescriptionAttribute("The location where files are saved when uploads are completed.  If the TempPath 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.")]
public string SavePath {get; set;}
C++/CLI 
[DefaultValueAttribute()]
[DartDescriptionAttribute("The location where files are saved when uploads are completed.  If the TempPath 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.")]
public:
property String^ SavePath {
   String^ get();
   void set (    String^ value);
}

Property Value

The default value is "~".

Remarks

If the TempPath property is not set, files will be uploaded directly to the SavePath.

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.