Skip to content

Commit 7c79331

Browse files
987332: CI failure
1 parent 2fb1c2f commit 7c79331

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Document-Processing-toc.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,7 @@
374374
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/save-original-document-at-the-server-side">Save original document at the server side</a></li>
375375
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/select-multi-page-annotations">Select multi-page TextMarkup annotation as single annotation</a></li>
376376
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/show-bookmark">Show Bookmark</a></li>
377+
<li><a href="/document-processing/pdf/pdf-viewer/asp-net-mvc/how-to/add-save-button">Add a Save button in the built-in Toolbar</a></li>
377378
</ul>
378379
</li>
379380
<li>Troubleshooting

Document-Processing/PDF/PDF-Viewer/asp-net-mvc/how-to/access-file-name.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ title: Access or Change File Name in ASP.NET MVC PDF Viewer | Syncfusion
44
description: Learn how to access the loaded PDF filename and change the download filename using the events in the Syncfusion ASP.NET MVC PDF Viewer.
55
platform: document-processing
66
control: PDF Viewer
7-
publishingplatform: ASP.NET MVC
87
documentation: ug
98
---
109

@@ -29,9 +28,9 @@ In the `DocumentLoad` or `DownloadEnd` event handler, you can access the origina
2928
<script>
3029
function documentLoad(args) {
3130
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
32-
args.fileName = "pdf_succintly.pdf";
31+
args.fileName = "pdf-succinctly.pdf";
3332
//Sets the name of the file to be downloaded
34-
viewer.downloadFileName = "pdf_succintly.pdf";
33+
viewer.downloadFileName = "pdf-succinctly.pdf";
3534
console.log(args);
3635
}
3736
</script>
@@ -46,9 +45,9 @@ In the `DocumentLoad` or `DownloadEnd` event handler, you can access the origina
4645
<script>
4746
function documentLoad(args) {
4847
var viewer = document.getElementById('pdfviewer').ej2_instances[0];
49-
args.fileName = "pdf_succintly.pdf";
48+
args.fileName = "pdf-succinctly.pdf";
5049
//Sets the name of the file to be downloaded
51-
viewer.downloadFileName = "pdf_succintly.pdf";
50+
viewer.downloadFileName = "pdf-succinctly.pdf";
5251
console.log(args);
5352
}
5453
</script>

0 commit comments

Comments
 (0)