Converts EasyAlgo.EAUpload..::.UploadStatus object, that is associated with Upload object, to java script object notation string (JSON).
Namespace:
EasyAlgo.EAUploadAssembly: EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.0.0
Syntax
| C# |
|---|
public string GetStatusInJSON() |
| Visual Basic (Declaration) |
|---|
Public Function GetStatusInJSON As String |
Return Value
A String that represents EasyAlgo.EAUpload..::.UploadStatus object in JSON format.
Remarks
JSON is an open, text-based data exchange format (see RFC 4627).
Like XML, it is human-readable, platform independent, and enjoys a wide availability of implementations.
Data formatted according to the JSON standard is lightweight and can be parsed by JavaScript
implementations with incredible ease, making it an ideal data exchange format for Ajax web applications.
You can convert EasyAlgo.EAUpload..::.UploadStatus to lightweight data format. This will reduce size of server response.
You can convert EasyAlgo.EAUpload..::.UploadStatus to lightweight data format. This will reduce size of server response.
Examples
See "Upload without reload page" (UploadWithoutPageReload.aspx, StatusInfoJSONFormat.aspx) example in distribution package.
