DEV Community

Discussion on: Blazor: .NET in Your Browser

Collapse
 
jeremylikness profile image
Jeremy Likness ⚡️

Blazor doesn't replace ASP.NET. One is a client-side technology, the other is a server-side technology. If you want to stand up Web APIs, learning ASP.NET makes sense as the way to marshal data to your Blazor app. Much of the technology is complementary: the way you register services, etc. is consistent across the stacks.

Collapse
 
shaijut profile image
Shaiju T

Thanks for the reply. Appreciate. 😃 👍