2
Bubbles
4y

Okay so what’s the difference between Blazor and Razor Pages??

I’ve heard Blazor is an alternative to Single page apps made with angular and that it’s not server side, and I personally don’t like that I’d rather have it run on the server side.

Comments
  • 1
    Wasn't the client part of blazor delayed/canceled leaving us with a server-side framework?
  • 0
    @alexbrooklyn I have no clue, I know it has some server side involved but I’m not sure tbh I just know that it runs on client side
  • 3
    Blazor compiles the views to webassembly that renders locally in the browser and uses ajax to speak to the backend.

    Razor pages are pure server side rendering that is page oriented instead of controller oriented.
  • 0
    @Voxera that’s prob the best, easiest to understand, and simplest explanation I’ve seen thank you
Add Comment