Definitely, the best video I have seen so far trying to explain and differentiate SSR, Server rendering, WebAssembly, and Auto rendering. Thank you, Patrick.
Question: in interactivity server mode the socket is responsible of js on the client that generates interactivity. The page is not full reloaded on the browser at the user action. Is it correct?
I've been using .NET & Angular till now. I am planning to use Blazor from 2025. Just wanted to know the difference between WebAssembly & Server Side. I happen to see this video. Absolutely amazing. Easy to understand and very well explained. Thank you so much.
Your explanation of Blazor render modes was incredibly clear and helpful. I was quite confused before, but now I have a much better understanding. Thank you so much!
Great content! I had already learned most of what you shared but love that you put it all together!! And I was tempted to start with a SSR project and add the other items to convert to the other project types - so thank you for doing that and showing us the magic that occurs!! Great stuff and big fan of your content!!
Incredibly helpful. I wanted to remove global Server rendering from an existing web app but wasn't really sure how to tackle it, now it's all pretty clear!
Thank you, I have a project in interactive auto then create component in Server/Page. At first second it shown, after that it is redirecting to Not Found Page. Is that expected when I choose auto? I just want to make a SEO friendly page so I make the page on the server project.
Excellent video. Starting from the Interactive Render Mode: None template and adding everything in step by step to get all the way to Auto was extremely valuable to me. Thanks Patrick!
Great video! A question I'm wondering about: How does it work with signal-R circuits if you land on a completely static page, and then go to an interactive component? How does scoped services work with this?
Is auto rendering mode can be use for manage the database? for instance if the connection is lost then we still can use 'local db' and after the connection established then we use the 'server db'? and how about synchronize the data between 'local db' and 'server db'? please advise...Thank you.
I loved this explanation! Now I know what VS does in the background when I choose the Blazor Web App template. Would it be possible for you to teach us how to set up TailwindCSS in Blazor 8?
Thanks for making this from the ground up. Definetely clicked that subscribe button :) I'm curious though why we're adding the MyButton Component on the client side and adding a reference to the client on the server. That feels pretty odd and against common patterns where the server should never depend on it's client (should be the other way around).
These new render modes are very confusing. The example done in this video would have been a much better set-up for the boilerplate code to show the minimum required to get it working. Great video
In Blazor, the render in auto mode allows you to use both the server and WebAssembly. Therefore, the purpose of this mode would be to leverage the server for the initial load, thus avoiding the WASM problem on other pages. Additionally, you can use the server on specific pages if necessary. I am right?
Great improvement from your previous videos on this topic, it is clearer now. I also want to ask, why in a real-world application would I want to have a Blazor Web App with the Interactivity Location set to "Per page/component" but not "Global"
Really nice video and i learn and refresh a lot of knowledge here. I would like to see also how services works? Singleton, Scoped, etc when you are using different render modes. Can you have a video for Services also as this video of how the lifetime of each service works depending on the render mode???
Just thinking on the best way to organise razor pages. Since the client project can render on the server, webclient or auto, would it make sense just to put all components in the client project and decide there where to render?
And how do you access data with a Web Assembly component when you need real data and not just a simple counter who doesn't need any call to your Blazor "server" project ? Because I've seen so much examples of the new render modes but no one is talking about how you retrieve real data when using a Web Assembly component. Do we need to create an API project just to manage some call which will only be used in Web Assembly render ? Because the other day I was trying to create a controller API within the Blazor "Server" project to be accessible by the Web Assembly but it didn't work.
What I'm observing is that the WASM module is completely lazy, and only downloads if you touch a route it serves. So if a user doesn't have certain roles then he'll be spared that background download. That's the holy grail for performance and security -- it's safe to include admin WASM module in your public site. Also, this is the first time I've seen a Program.cs executed in a project that isn't flagged for startup. Blows my mind!
okay then the practices is to put server interactivity in server project and wasm interactivity in client project ? or it can be live in one project whatever the rendermode ? what do you think the best ?
I know you advertised the academy.. but I find this useful, and you easy to listen to. So I was wondering if you might have Udemy courses. I haven't checked but I have a subscription there. If you don't its fine, I'd just like to see your courses there.
Nice video as usual Patrick! Now I come with a question: I have a Net 6 stack project with ASPNET Core as server and WebAssembly as client. In my client I have an appsettings that indicates the server address where the client has to connect to reach server. How to define the server endpoint with the new stack in Net 8 as of now in order to be able to deploy and use such a solution ported from net 6 to net 8 ? Any advice or a small video on that point please ? Thanks again and keep up the great work!
Really enjoy these short overviews. As I get deeper into Blazor with all the variations between server and client interactions, it's becoming apparent that there's a need to really spend the time and organize my code and structure so I can even find what I'm looking while building out an application. Time to step back and think more about such things as architecture, folder structures, naming conventions, etc. Hmm, sounds like a possible future video.
Nice video . How can i Used Server side like controller API on Blazor app with auto(server and webassembly) with individual account ? it is good because i can used authentication and authorization for API on Server side. Thanks
Good morning, a question. Why is it that when we create the interactive render mode as "WebAssembly" the server project is also created? With .NET 7 you only created a single project configured for WebAssembly. Thank you so much
If I have an InteractiveAuto component that retrieves some data from a database, we might do this directly when rendered on the server but via an API when rendered on the client. How do Blazor applications typically handle this? One thing you probably don't want to do is accidentally send your data access DLLs down to the client and potentially reveal a load of details about your database.
I have been thinking about this. But looks like you will need to have an interface that is implemented on both client and server. The server one has access to the data access dlls. The client one simply accessing a http client. Then let Dependency injection work the magic for you.
Hello, I still don't understand the practical used case of when Using WebAssembly or Server side render. Particularly when it comes to choose the blazor project in VS, we have too many choices. From which Blazor project to its Render mode. How to choose according to the future app ?
Hii , i want to understand which render mode we should use, because i am confused between interactive server mode or auto render mode...? Any plz reply....
Hi Patrick. I am trying to get user data from HttpContext in Blazor server in Net 8, I know that for InteractiveServer render mode it will always be null (httpContext). I have the cookie loaded in the browser but to read that in a component with render mode IntereactiveServer, I did not found a way to do that. Should I need to create my client project, move all the content of the project (Grids, buttons, list, etc..) and have the server project as static and the client project as WebAssemblyRenderMode?.
Hi @patrick i have a doubt regarding multiple openid implementing like login with google ,facebook and microsoft in blazor wasm alone without involving backend i have tried implementing seperately in three seperate wasm projects its works fine but i need all the there authentications in one wasm how to do that? please help.
Not sure if anyone has insight on this but I am making a Blazor wasm / server app that can work online and offline. I have a page in the client that I specify the render mode as InteractiveWebAssembly and when I go to the page none of the methods get called like if I click a button, nothing happens, breakpoints not hit etc. But when I convert it to a component and specify the render mode on the component like then it works and methods are hit. Anyone got any idea why that is?
Hi , i like what you are doing , Please a i have a question , i have a APi that handle generating authentication with jwt access token , and all my logic is in this API , i want to use blazor as frontend with rendermodeAuto, how to use the JWT in this case? for WASM si I have no probleme , but with Blazor RenderModeAutho i am lost Thank you
Definitely, the best video I have seen so far trying to explain and differentiate SSR, Server rendering, WebAssembly, and Auto rendering. Thank you, Patrick.
Question: in interactivity server mode the socket is responsible of js on the client that generates interactivity. The page is not full reloaded on the browser at the user action. Is it correct?
Starting from a project without interactivity and adding the pieces step by step really help to understand new blazor features. Good job!!
I've been using .NET & Angular till now. I am planning to use Blazor from 2025. Just wanted to know the difference between WebAssembly & Server Side. I happen to see this video. Absolutely amazing. Easy to understand and very well explained. Thank you so much.
I really appreciate how you pull apart the default templates and show what actually matters. Thanks for that.
Very nice, the best explanation about how the rendering works, thanks for share Patrick!!
My pleasure! Glad you enjoyed it and thanks for your feedback!
Ironically perfect timing. I wanted to start explore htmx + Blazor SSR today and here is a brief introduction of render modes. Thanks 👍
Glad I could help!
Wow. What a nice spontaneous video. I just love it. ".. or we could do and move that to... You know what? Let's do that."
Very enlightening! Thank you for your content! Simple to understand...
Your explanation of Blazor render modes was incredibly clear and helpful. I was quite confused before, but now I have a much better understanding. Thank you so much!
Thank you so much for your kind words! It means a lot to know that my explanation made a difference for you. Keep diving into Blazor!
Great content! I had already learned most of what you shared but love that you put it all together!! And I was tempted to start with a SSR project and add the other items to convert to the other project types - so thank you for doing that and showing us the magic that occurs!! Great stuff and big fan of your content!!
good -- to understand how to convert my various render modes and related project(s) structure and dependencies.
Great tutorial, concise and comprehensive. Thank u very much!
Incredibly helpful. I wanted to remove global Server rendering from an existing web app but wasn't really sure how to tackle it, now it's all pretty clear!
Awesome explanation thank you so much for providing one more great video.
Thank you, I have a project in interactive auto then create component in Server/Page. At first second it shown, after that it is redirecting to Not Found Page. Is that expected when I choose auto?
I just want to make a SEO friendly page so I make the page on the server project.
Thanks a lot! I was confused about how this works now I'm getting because you!
Great video man! Subscribed instantly.
Thank you so much! ❤️
Amazing and simple explanation Patrick! thanks for sharing it
Happy to help! 😊
Excellent video. Starting from the Interactive Render Mode: None template and adding everything in step by step to get all the way to Auto was extremely valuable to me. Thanks Patrick!
Best explanation of this on the internet
That's great presentation. Thanks !
Glad it helped!
I didnt know you could use forms in SSR, I would love a video on that
nice... is auto the same as united?
Great video!
A question I'm wondering about: How does it work with signal-R circuits if you land on a completely static page, and then go to an interactive component? How does scoped services work with this?
Is auto rendering mode can be use for manage the database? for instance if the connection is lost then we still can use 'local db' and after the connection established then we use the 'server db'? and how about synchronize the data between 'local db' and 'server db'? please advise...Thank you.
This sounds cool to be implemented. But will be hard to implement it.
Have you did that yet?
Great intro video, Thank you!! Saved my day.
Very interesting, thank you. Is there any benefit to using the client/server project approach?
Great sistematic knowledge transfer! Bravo!
I loved this explanation! Now I know what VS does in the background when I choose the Blazor Web App template.
Would it be possible for you to teach us how to set up TailwindCSS in Blazor 8?
Thanks for making this from the ground up. Definetely clicked that subscribe button :)
I'm curious though why we're adding the MyButton Component on the client side and adding a reference to the client on the server.
That feels pretty odd and against common patterns where the server should never depend on it's client (should be the other way around).
Thank you, this helped me a lot!
These new render modes are very confusing. The example done in this video would have been a much better set-up for the boilerplate code to show the minimum required to get it working. Great video
In Blazor, the render in auto mode allows you to use both the server and WebAssembly. Therefore, the purpose of this mode would be to leverage the server for the initial load, thus avoiding the WASM problem on other pages. Additionally, you can use the server on specific pages if necessary. I am right?
Great video. Thank you Patrick!
Great improvement from your previous videos on this topic, it is clearer now. I also want to ask, why in a real-world application would I want to have a Blazor Web App with the Interactivity Location set to "Per page/component" but not "Global"
Really nice video and i learn and refresh a lot of knowledge here. I would like to see also how services works? Singleton, Scoped, etc when you are using different render modes.
Can you have a video for Services also as this video of how the lifetime of each service works depending on the render mode???
Excellent video! 👍
Just thinking on the best way to organise razor pages.
Since the client project can render on the server, webclient or auto, would it make sense just to put all components in the client project and decide there where to render?
How does this affect MAUI Blazor Hybrid ?
Hi Patrick, very nice explanation!
I have one doubt, when is convenient to use old server mode over auto mode?
And how do you access data with a Web Assembly component when you need real data and not just a simple counter who doesn't need any call to your Blazor "server" project ? Because I've seen so much examples of the new render modes but no one is talking about how you retrieve real data when using a Web Assembly component. Do we need to create an API project just to manage some call which will only be used in Web Assembly render ?
Because the other day I was trying to create a controller API within the Blazor "Server" project to be accessible by the Web Assembly but it didn't work.
You are the best ❤
Really helpful! Thank you!
This was the best one
So if we use auto mode to read data from a database, do we have to create two interfaces, one for Server mode and one Wasm?
Indeed it helped 🤩 Thanks
What I'm observing is that the WASM module is completely lazy, and only downloads if you touch a route it serves. So if a user doesn't have certain roles then he'll be spared that background download. That's the holy grail for performance and security -- it's safe to include admin WASM module in your public site. Also, this is the first time I've seen a Program.cs executed in a project that isn't flagged for startup. Blows my mind!
okay then the practices is to put server interactivity in server project and wasm interactivity in client project ? or it can be live in one project whatever the rendermode ? what do you think the best ?
I know you advertised the academy.. but I find this useful, and you easy to listen to. So I was wondering if you might have Udemy courses. I haven't checked but I have a subscription there. If you don't its fine, I'd just like to see your courses there.
Nice video as usual Patrick! Now I come with a question: I have a Net 6 stack project with ASPNET Core as server and WebAssembly as client. In my client I have an appsettings that indicates the server address where the client has to connect to reach server. How to define the server endpoint with the new stack in Net 8 as of now in order to be able to deploy and use such a solution ported from net 6 to net 8 ? Any advice or a small video on that point please ? Thanks again and keep up the great work!
Great video! Thank you, Patrick. Can you do the Blazor together with TabBlazor template?
it is possible to run just on solution and make defrent render mode component ?
Can I use server render mode under client component?
Really enjoy these short overviews. As I get deeper into Blazor with all the variations between server and client interactions, it's becoming apparent that there's a need to really spend the time and organize my code and structure so I can even find what I'm looking while building out an application. Time to step back and think more about such things as architecture, folder structures, naming conventions, etc. Hmm, sounds like a possible future video.
Great video
Nice video . How can i Used Server side like controller API on Blazor app with auto(server and webassembly) with individual account ? it is good because i can used authentication and authorization for API on Server side. Thanks
Hi, Good Video, Can i put @rendermode InteractiveWebAssembly in a page that is placed in server project, or i need put it neccesary in client project
thx ya..
btw i can't breakpoint/debug on ButtonClick when InteractiveWebAssembly mode
Good morning, a question. Why is it that when we create the interactive render mode as "WebAssembly" the server project is also created? With .NET 7 you only created a single project configured for WebAssembly. Thank you so much
Thank you so much.
What is the name of the community on twitter?
If I have an InteractiveAuto component that retrieves some data from a database, we might do this directly when rendered on the server but via an API when rendered on the client. How do Blazor applications typically handle this? One thing you probably don't want to do is accidentally send your data access DLLs down to the client and potentially reveal a load of details about your database.
I have been thinking about this. But looks like you will need to have an interface that is implemented on both client and server. The server one has access to the data access dlls. The client one simply accessing a http client. Then let Dependency injection work the magic for you.
How we can host this new Balzor web app in azure?
my question is that no matter what the render mode is...page is not going make a server trip like old fashion asp...ami right?
Is it possible to use only project to support InteractiveAuto mode ?
Hello,
I still don't understand the practical used case of when Using WebAssembly or Server side render. Particularly when it comes to choose the blazor project in VS, we have too many choices. From which Blazor project to its Render mode.
How to choose according to the future app ?
Hii , i want to understand which render mode we should use, because i am confused between interactive server mode or auto render mode...?
Any plz reply....
Hi Patrick.
I am trying to get user data from HttpContext in Blazor server in Net 8, I know that for InteractiveServer render mode it will always be null (httpContext). I have the cookie loaded in the browser but to read that in a component with render mode IntereactiveServer, I did not found a way to do that. Should I need to create my client project, move all the content of the project (Grids, buttons, list, etc..) and have the server project as static and the client project as WebAssemblyRenderMode?.
Followed the tutorial, everything works on each step except that I don't see Wasm downloading
Thank you
Can you explain how make custom authentication and authorization (jwt) with net 8? now it not work like net 7
Hi @patrick i have a doubt regarding multiple openid implementing like login with google ,facebook and microsoft in blazor wasm alone without involving backend i have tried implementing seperately in three seperate wasm projects its works fine but i need all the there authentications in one wasm how to do that? please help.
when chose project Server The Button in Counter the @rendermode InteractiveServer is not Working !! the Breakpoint ALL Button Not Working
HI Patrick do you have a plan for create a cource NET MAUI BLAZOR APP... mix both tecnology.?
Mixing render can't expose critical information ? I feel like in use of mixing render it's necessary to be very careful.
Not sure if anyone has insight on this but I am making a Blazor wasm / server app that can work online and offline. I have a page in the client that I specify the render mode as InteractiveWebAssembly and when I go to the page none of the methods get called like if I click a button, nothing happens, breakpoints not hit etc.
But when I convert it to a component and specify the render mode on the component like then it works and methods are hit.
Anyone got any idea why that is?
Hi , i like what you are doing ,
Please a i have a question ,
i have a APi that handle generating authentication with jwt access token , and all my logic is in this API , i want to use blazor as frontend with rendermodeAuto, how to use the JWT in this case?
for WASM si I have no probleme , but with Blazor RenderModeAutho i am lost
Thank you
Yo
Another cool video about render modes ruclips.net/video/HZAdXx7-PnM/видео.html