Skip to content

Commit 8b8dbfe

Browse files
committed
998417-ug: Updated proper changes.
1 parent b183984 commit 8b8dbfe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Document-Processing/PDF/PDF-Library/javascript/Create-PDF-document-asp-net-core.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Step 2: In the **Create a new project** dialog, select **ASP.NET Core Web App**.
2121
![ASP.NET Core PDF creation1](Getting_started_images/Asp-net-core-creation1.png)
2222
Step 3: In the **Configure your new project** dialog, enter the project name and select **Next**.
2323
![ASP.NET Core PDF creation2](Getting_started_images/Asp-net-core-creation2.png)
24-
Step 8: In the **Additional information** dialog, select a .NET LTS version (for example, **.NET 8.0 (Long-term Support)**) and then select **Create**.
24+
Step 4: In the **Additional information** dialog, select a .NET LTS version (for example, **.NET 8.0 (Long-term Support)**) and then select **Create**.
2525
![ASP.NET Core PDF creation3](Getting_started_images/Asp-net-core-creation3.png)
2626

27-
Step 4: **Add script reference** : Add the required scripts using the CDN inside the `<head>` of `~/Views/Shared/_Layout.cshtml` as follows:
27+
Step 5: **Add script reference** : Add the required scripts using the CDN inside the `<head>` of `~/Views/Shared/_Layout.cshtml` as follows:
2828

2929
{% tabs %}
3030
{% highlight c# tabtitle="~/_Layout.cshtml" %}
@@ -38,7 +38,7 @@ Step 4: **Add script reference** : Add the required scripts using the CDN inside
3838
{% endhighlight %}
3939
{% endtabs %}
4040

41-
Step 5: **Create a PDF document** : Add the script in `~/Views/Home/Index.cshtml` by creating a button and attaching a click event that uses the JavaScript PDF API to generate a PDF document.
41+
Step 6: **Create a PDF document** : Add the script in `~/Views/Home/Index.cshtml` by creating a button and attaching a click event that uses the JavaScript PDF API to generate a PDF document.
4242

4343
{% tabs %}
4444
{% highlight c# tabtitle="~/Index.cshtml" %}
@@ -75,9 +75,9 @@ Step 5: **Create a PDF document** : Add the script in `~/Views/Home/Index.cshtml
7575
{% endhighlight %}
7676
{% endtabs %}
7777

78-
step 6: **Build the project** : Click on Build > Build Solution or press Ctrl + Shift + B to build the project.
78+
step 7: **Build the project** : Click on Build > Build Solution or press Ctrl + Shift + B to build the project.
7979

80-
Step 7: **Run the project** : Click the Start button (green arrow) or press F5 to run the app.
80+
Step 8: **Run the project** : Click the Start button (green arrow) or press F5 to run the app.
8181

8282
By executing the program, you will generate the following PDF document.
8383

0 commit comments

Comments
 (0)