You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ej2-angular/uploader/chunk-upload.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -103,6 +103,10 @@ The following example explains about chunk upload with cancel support.
103
103
104
104
The server-side implementation entirely depends on the application requirements and logic. The following code snippet provides the server-side logic to handle the chunk upload using the uploader components.
105
105
106
+
>The `chunk-index` and `total-chunk` values are accessible through the form data using `Request.Form`, which retrieves these details from the incoming request.
107
+
*`chunk-index` - Indicates the index of the current chunk being received.
108
+
*`total-chunk` - Represents the total number of chunks for the file being uploaded.
109
+
106
110
```csharp
107
111
publicstringuploads=Path.Combine(Directory.GetCurrentDirectory(), "Uploaded Files"); // Set your desired upload directory path
0 commit comments