diff --git a/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Browse_GCP.png b/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Browse_GCP.png
new file mode 100644
index 000000000..1d9911e19
Binary files /dev/null and b/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Browse_GCP.png differ
diff --git a/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Configuration_GCP.png b/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Configuration_GCP.png
new file mode 100644
index 000000000..fe7a6196c
Binary files /dev/null and b/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Configuration_GCP.png differ
diff --git a/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Ensure_Sample_GCP.png b/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Ensure_Sample_GCP.png
new file mode 100644
index 000000000..36b32e2cb
Binary files /dev/null and b/Document-Processing/Excel/Excel-Library/NET/GCP_Images/Ensure_Sample_GCP.png differ
diff --git a/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-google-app-engine.md b/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-google-app-engine.md
new file mode 100644
index 000000000..f82182ca9
--- /dev/null
+++ b/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-google-app-engine.md
@@ -0,0 +1,268 @@
+---
+title: Loading and Saving Excel in Google App Engine | Syncfusion
+description: Explains how to load and save an Excel files in Google App Engine using .NET Core Excel (XlsIO) library without Microsoft Excel or interop dependencies.
+platform: document-processing
+control: XlsIO
+documentation: UG
+---
+
+# Loading and Saving Excel files in Google App Engine
+
+Syncfusion® XlsIO is a [.NET Core Excel library](https://www.syncfusion.com/document-processing/excel-framework/net-core/excel-library) used to create, read, edit and convert Excel documents programmatically without **Microsoft Excel** or interop dependencies. Using this library, you can **load and save an Excel document in Google App Engine**.
+
+## Set up App Engine
+
+Step 1: Open the **Google Cloud Console** and click the **Activate Cloud Shell** button.
+
+
+
+Step 2: Click the **Cloud Shell Editor** button to view the **Workspace**.
+
+
+
+Step 3: Open **Cloud Shell Terminal**, run the following **command** to confirm authentication.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+gcloud auth list
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 4: Click the **Authorize** button.
+
+
+
+## Create an application for App Engine
+
+Step 1: Open Visual Studio and select the ASP.NET Core Web app (Model-View-Controller) template.
+
+
+
+Step 2: Configure your new project according to your requirements.
+
+
+
+Step 3: Click the **Create** button.
+
+
+
+Step 4: Install the [Syncfusion.XlsIO.Net.Core](https://www.nuget.org/packages/Syncfusion.XlsIO.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org).
+
+
+
+N> Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, you also have to add "Syncfusion.Licensing" assembly reference and include a license key in your projects. Please refer to this [link](https://help.syncfusion.com/common/essential-studio/licensing/overview) to know about registering Syncfusion® license key in your application to use our components.
+
+Step 5: Include the following namespaces in the **HomeController.cs** file.
+
+{% tabs %}
+{% highlight c# tabtitle="C#" %}
+
+using Syncfusion.XlsIO;
+
+{% endhighlight %}
+{% endtabs %}
+
+Step 6: A default action method named Index will be present in HomeController.cs. Right click on Index method and select **Go To View** where you will be directed to its associated view page **Index.cshtml**.
+
+Step 7: Add a new button in the Index.cshtml as shown below.
+
+{% tabs %}
+{% highlight c# tabtitle="C#" %}
+
+@{Html.BeginForm("LoadAndSaveDocument", "Home", FormMethod.Get);
+{
+
+
+
+}
+Html.EndForm();
+}
+
+{% endhighlight %}
+{% endtabs %}
+
+Step 8: Add a new action method **LoadAndSaveDocument** in HomeController.cs and include the below code snippet to **Load and Save an Excel Document**.
+{% tabs %}
+{% highlight c# tabtitle="C#" %}
+using (ExcelEngine excelEngine = new ExcelEngine())
+{
+ IApplication application = excelEngine.Excel;
+ application.DefaultVersion = ExcelVersion.Xlsx;
+ FileStream excelStream = new FileStream("Sample.xlsx", FileMode.Open, FileAccess.Read);
+ IWorkbook workbook = application.Workbooks.Open(excelStream);
+
+ //Access first worksheet from the workbook.
+ IWorksheet worksheet = workbook.Worksheets[0];
+
+ //Set Text in cell A3.
+ worksheet.Range["A3"].Text = "Hello World";
+
+ //Save the Excel to MemoryStream
+ MemoryStream outputStream = new MemoryStream();
+ workbook.SaveAs(outputStream);
+
+ //Set the position
+ outputStream.Position = 0;
+
+ //Download the Excel document in the browser.
+ return File(outputStream, "application/msexcel", "Output.xlsx");
+}
+{% endhighlight %}
+{% endtabs %}
+
+## Move application to App Engine
+
+Step 1: Open the **Cloud Shell editor**.
+
+
+
+Step 2: Drag and drop the sample from your local machine to **Workspace**.
+
+
+
+N> If you have your sample application in your local machine, drag and drop it into the Workspace. If you created the sample using the Cloud Shell terminal command, it will be available in the Workspace.
+
+Step 3: Open the Cloud Shell Terminal and run the following **command** to view the files and directories within your **current Workspace**.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+ls
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 4: Run the following **command** to navigate which sample you want run.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+cd Load-and-save-Excel-document
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 5: To ensure that the sample is working correctly, please run the application using the following command.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+dotnet run --urls=http://localhost:8080
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 6: Verify that the application is running properly by accessing the **Web View** -> **Preview on port 8080**.
+
+
+
+Step 7: Now you can see the sample output on the preview page.
+
+
+
+Step 8: Close the preview page and return to the terminal then press **Ctrl+C** for which will typically stop the process.
+
+
+
+## Publish the application
+
+Step 1: Run the following command in **Cloud Shell Terminal** to publish the application.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+dotnet publish -c Release
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 2: Run the following command in **Cloud Shell Terminal** to navigate to the publish folder.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+cd bin/Release/net8.0/publish/
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+## Configure app.yaml and docker file
+
+Step 1: Add the app.yaml file to the publish folder with the following contents.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+cat <> app.yaml
+env: flex
+runtime: custom
+EOT
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 2: Add the Docker file to the publish folder with the following contents.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+cat <> Dockerfile
+FROM mcr.microsoft.com/dotnet/aspnet:8.0
+RUN apt-get update -y && apt-get install libfontconfig -y
+ADD / /app
+EXPOSE 8080
+ENV ASPNETCORE_URLS=http://*:8080
+WORKDIR /app
+ENTRYPOINT [ "dotnet", "Load-and-save-Excel-document.dll"]
+EOT
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 3: You can ensure **Docker** and **app.yaml** files are added in **Workspace**.
+
+
+
+## Deploy to App Engine
+
+Step 1: To deploy the application to the App Engine, run the following command in Cloud Shell Terminal. Afterwards, retrieve the **URL** from the Cloud Shell Terminal.
+
+{% tabs %}
+{% highlight c# tabtitle="CLI" %}
+
+gcloud app deploy --version v0
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+Step 2: Open the **URL** to access the application, which has been successfully deployed.
+
+
+
+By executing the program, you will get the **Excel document** as follows.
+
+
+
+Click [here](https://www.syncfusion.com/document-processing/excel-framework/net-core) to explore the rich set of Syncfusion® Excel library (XlsIO) features.
+
+An online sample link to [create an Excel document](https://ej2.syncfusion.com/aspnetcore/Excel/Create#/material3) in ASP.NET Core.
\ No newline at end of file
diff --git a/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-google-cloud-platform.md b/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-google-cloud-platform.md
new file mode 100644
index 000000000..84e255e29
--- /dev/null
+++ b/Document-Processing/Excel/Excel-Library/NET/Loading-and-Saving/loading-and-saving-excel-files-in-google-cloud-platform.md
@@ -0,0 +1,35 @@
+---
+title: Loading and Saving Excel in GCP | Syncfusion
+description: Learn how to load and save an Excel files in Google Cloud Platform (GCP) using .NET Core Excel library (XlsIO).
+platform: document-processing
+control: XlsIO
+documentation: UG
+---
+
+# Loading and Saving Excel files in Google Cloud Platform (GCP)
+
+Syncfusion® XlsIO is a [.NET Core Excel library](https://www.syncfusion.com/document-processing/excel-framework/net-core/excel-library) used to create, read, edit and convert Excel documents programmatically without **Microsoft Excel** or interop dependencies. Using this library, you can **load and save an Excel document in Google Cloud Platform (GCP)** within a few lines of code.
+
+N> If this is your first time working with Google Cloud Platform (GCP), please refer to the dedicated GCP resources. This section explains how to load and save an Excel document in C# using the .NET Core Exel (XlsIO) library in GCP.
+
+## Prerequisites
+
+Before we begin, make sure you have the following.
+
+* A [Google Cloud Platform (GCP)](https://console.cloud.google.com/getting-started) account with access to the App Engine service.
+
+## Google Cloud Platform (GCP)
+
+