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
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also