From 407953698aa1546f5fec7e2f99ffffd2e7d22217 Mon Sep 17 00:00:00 2001 From: Konduru Keerthi Konduru Ravichandra Raju Date: Mon, 1 Jul 2024 13:16:47 +0530 Subject: [PATCH] AWS-S3-Bucket --- .../Save-PowerPoint-document/Controllers/HomeController.cs | 2 +- .../Save-PowerPoint-document/Views/Home/Index.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Controllers/HomeController.cs b/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Controllers/HomeController.cs index 88b0c1b8..8196eeaf 100644 --- a/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Controllers/HomeController.cs +++ b/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Controllers/HomeController.cs @@ -20,7 +20,7 @@ public IActionResult Index() { return View(); } - public async Task CreateDocument() + public async Task UploadDocument() { //Create a new instance of PowerPoint Presentation file IPresentation pptxDocument = Presentation.Create(); diff --git a/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Views/Home/Index.cshtml b/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Views/Home/Index.cshtml index 8dd2e433..52617f07 100644 --- a/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Views/Home/Index.cshtml +++ b/Read-and-save-PowerPoint-presentation/Open-and-save-PowerPoint/AWS-S3-Bucket/Save-PowerPoint-document/Save-PowerPoint-document/Views/Home/Index.cshtml @@ -2,7 +2,7 @@ ViewData["Title"] = "Home Page"; } -@{Html.BeginForm("CreateDocument", "Home", FormMethod.Get); +@{Html.BeginForm("UploadDocument", "Home", FormMethod.Get); {