Skip to content

Commit 33df35f

Browse files
983466: Update getting-started-webapp.md
1 parent 7e64664 commit 33df35f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

blazor/smart-textarea/getting-started-webapp.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ N> Syncfusion Blazor Smart Components support both OpenAI and Azure OpenAI and a
7070
Create a **Blazor Web App** using Visual Studio Code with [Microsoft Templates](https://learn.microsoft.com/en-us/aspnet/core/blazor/tooling?view=aspnetcore-8.0&pivots=vsc) or the [Syncfusion Blazor Extension](https://blazor.syncfusion.com/documentation/visual-studio-code-integration/create-project). Configure the app with the Server interactive render mode using the following commands:
7171

7272
{% tabs %}
73-
{% highlight c# tabtitle="Blazor Web App" %}
73+
{% highlight c# tabtitle="Blazor Web App Server" %}
7474

7575
dotnet new blazor -o BlazorWebApp -int Server
7676
cd BlazorWebApp
@@ -119,7 +119,7 @@ For Server interactive render mode, open the **~/Components/_Imports.razor** fil
119119
Register the Syncfusion Blazor service in the **~/Program.cs** file:
120120

121121
{% tabs %}
122-
{% highlight C# tabtitle="Blazor Web App" hl_lines="3 10" %}
122+
{% highlight C# tabtitle="Blazor Web App Server" hl_lines="3 10" %}
123123

124124
using Microsoft.AspNetCore.Components;
125125
using Microsoft.AspNetCore.Components.Web;
@@ -166,7 +166,7 @@ For OpenAI, obtain an API key from [OpenAI](https://help.openai.com/en/articles/
166166
Add the following to the **~/Program.cs** file:
167167

168168
{% tabs %}
169-
{% highlight C# tabtitle="Blazor Web App" hl_lines="7 8 9 11 12 13" %}
169+
{% highlight C# tabtitle="Blazor Web App Server" hl_lines="7 8 9 11 12 13" %}
170170

171171
using Microsoft.AspNetCore.Components;
172172
using Microsoft.AspNetCore.Components.Web;
@@ -204,7 +204,7 @@ For Azure OpenAI, deploy a resource and model as described in [Azure OpenAI docu
204204
Add the following to the **~/Program.cs** file:
205205

206206
{% tabs %}
207-
{% highlight C# tabtitle="Blazor Web App" hl_lines="7 8 9 11 12 13" %}
207+
{% highlight C# tabtitle="Blazor Web App Server" hl_lines="7 8 9 11 12 13" %}
208208

209209
using Microsoft.AspNetCore.Components;
210210
using Microsoft.AspNetCore.Components.Web;
@@ -253,7 +253,7 @@ To use Ollama for self-hosted models:
253253
Add the following to the **~/Program.cs** file:
254254

255255
{% tabs %}
256-
{% highlight C# tabtitle="Blazor Web App" hl_lines="7 8 9 11 12 13" %}
256+
{% highlight C# tabtitle="Blazor Web App Server" hl_lines="7 8 9 11 12 13" %}
257257

258258
using Microsoft.AspNetCore.Components;
259259
using Microsoft.AspNetCore.Components.Web;

0 commit comments

Comments
 (0)