Skip to content

Commit 5973cfd

Browse files
committed
Fixed delete/download
1 parent 0b248ba commit 5973cfd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

jQuery-File-Upload.MVC3/Upload/FileUploadStatus.cs renamed to jQuery-File-Upload.MVC3/Upload/FilesStatus.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ private void SetValues(string fileName, int fileLength, string fullPath)
3030
type = "image/png";
3131
size = fileLength;
3232
progress = "1.0";
33-
url = HandlerPath + "FileTransferHandler.ashx?f=" + fileName;
34-
delete_url = HandlerPath + "FileTransferHandler.ashx?f=" + fileName;
33+
url = HandlerPath + "UploadHandler.ashx?f=" + fileName;
34+
delete_url = HandlerPath + "UploadHandler.ashx?f=" + fileName;
3535
delete_type = "DELETE";
3636

3737
var ext = Path.GetExtension(fullPath);

jQuery-File-Upload.MVC3/jQuery-File-Upload.MVC3.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
</Compile>
7575
<Compile Include="Models\AccountModels.cs" />
7676
<Compile Include="Properties\AssemblyInfo.cs" />
77-
<Compile Include="Upload\FileUploadStatus.cs" />
77+
<Compile Include="Upload\FilesStatus.cs" />
7878
<Compile Include="Upload\UploadHandler.ashx.cs">
7979
<DependentUpon>UploadHandler.ashx</DependentUpon>
8080
</Compile>

0 commit comments

Comments
 (0)