Visual Studio Website Templates [updated] Jun 2026
A new tool window: .
: Use the search bar or filters (Language: C#, Platform: Windows, Type: Web) to find the right template.
dotnet new blazorserver -n MyBlazor
| Problem | Solution | |---------|----------| | "No templates found" | Run Visual Studio Installer → Modify → Add ".NET desktop development" or "ASP.NET and web development" workload | | Template uses old Bootstrap 4 | Right-click project → Manage NuGet Packages → Install bootstrap latest version, update _Layout.cshtml references | | HTTPS error on run | Edit Properties/launchSettings.json → set "sslPort": 0 or install dev certificate ( dotnet dev-certs https --trust ) | | Can't find SPA templates | Install extension or use dotnet new react from CLI |
| If you want... | Use this template | |----------------|-------------------| | Simple blog or company site | Razor Pages | | Enterprise web app with database | MVC + Individual Auth | | Real-time dashboard (chat, stocks) | Blazor Server | | Fully static site (no backend) | Empty + add HTML/CSS/JS files manually | | Admin panel / CMS | Download AdminLTE template and integrate | | SPA with React + API backend | React + ASP.NET Core template | visual studio website templates
Based on your request, I have designed a for implementing modern website templates within Visual Studio.
Then open the folder in Visual Studio.
You can download HTML/CSS templates and manually integrate them into an ASP.NET Core project:
When you open a default ASP.NET Core website template, you'll see: A new tool window: