diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/open-pdf-file.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/open-pdf-file.md
new file mode 100644
index 0000000000..a72c42b3d9
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.MVC/open-pdf-file.md
@@ -0,0 +1,52 @@
+---
+layout: post
+title: Open PDF files in EJ2 ASP.NET MVC PDF Viewer | Syncfusion
+description: Learn here all about Opening PDF in ASP.NET MVC PDF Viewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: How to Open PDF From Base64
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Opening a PDF from Base64 data in PDF Viewer
+### Overview
+
+This guide demonstrates how to load a PDF document from a Base64 string into the Syncfusion PDF Viewer using ASP.NET MVC. This feature is useful for loading PDF data received from a client, database, or other sources where the document is encoded in Base64.
+
+### Opening PDF from Base64 data
+
+**Step 1:** Set Up the PdfViewer in Your ASP.NET MVC Project
+
+ Follow the steps provided in the [link](https://ej2.syncfusion.com/aspnetmvc/documentation/pdfviewer/getting-started) to create a simple PDF Viewer sample.
+
+**Step 2:** Use the following code snippet to load PDF document using base64 string.
+
+
+{% tabs %}
+{% highlight html tabtitle="Standalone" %}
+
+@using Syncfusion.EJ2
+@{
+ ViewBag.Title = "Home Page";
+}
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+[View sample in GitHub](https://github.com/SyncfusionExamples/mvc-pdf-viewer-examples/tree/master/How%20to)
diff --git a/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/open-pdf-file.md b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/open-pdf-file.md
new file mode 100644
index 0000000000..0608316130
--- /dev/null
+++ b/ej2-asp-core-mvc/pdfviewer/EJ2_ASP.NETCORE/open-pdf-file.md
@@ -0,0 +1,53 @@
+---
+layout: post
+title: Open PDF files in EJ2 ASP.NET CORE PDF Viewer | Syncfusion
+description: Learn here all about Opening PDF in ASP.NET CORE PDF Viewer component of Syncfusion Essential JS 2 and more.
+platform: ej2-asp-core-mvc
+control: PDF Viewer
+publishingplatform: ##Platform_Name##
+documentation: ug
+---
+
+# Opening a PDF from Base64 data in PDF Viewer
+### Overview
+
+This guide demonstrates how to load a PDF document from a Base64 string into the Syncfusion PDF Viewer using ASP.NET CORE. This feature is useful for loading PDF data received from a client, database, or other sources where the document is encoded in Base64.
+
+### Opening PDF from Base64 data
+
+**Step 1:** Set Up the PdfViewer in Your ASP.NET CORE Project
+
+Follow the steps provided in the [link](https://ej2.syncfusion.com/aspnetcore/documentation/pdfviewer/getting-started) to create a simple PDF Viewer sample.
+
+**Step 2:** Use the following code snippet to load PDF document using base64 string.
+
+
+{% tabs %}
+{% highlight html tabtitle="Standalone" %}
+
+@page "{handler?}"
+@model IndexModel
+@{
+ ViewData["Title"] = "Home page";
+}
+
+