kunaldchowdhury, to blazor
smalls, to CSharp
@smalls@ocw.social avatar

Finally getting around to playing with the unified Blazor updates coming in .NET 8. I've been super excited about this ever since they announced it.

This is me running the index page with server-side rendering (SSR), but the weather page is running with both SSR and WebAssembly (The forecast table component is what is using WebAssembly).

#csharp #dotnet #blazor

video/mp4

smalls,
@smalls@ocw.social avatar

Basically Blazor has had two hosting models for web projects: Server and WebAssembly. Server does all of the rendering on the server and requires the client to have a consistent SignalR connection; however, WebAssembly does not require the client to have a consistent connection and instead the client has to download and run all of the WASM and DLL files, which can be extremely heavy on file size (The download size will be small if you use gzip or brotli compression, but it will be larger in the cache once it's uncompressed).

This new model combines those two into one, but also adds plain old server-side rendering (SSR). Now I can pick and choose how a specific component is rendered on the page and the logic is performed. It's so cool that I can combine SSR, WebAssembly, and a SignalR connection in one single project.

#csharp #dotnet #blazor

matkoch, to dotnet

Log.Warning("Join tomorrow! ⭐️")

📺 OSS Power-Ups: #bUnit
🗣 Speakers: @egil and Steven Giesel

📅 Tomorrow, Wednesday, 5pm CEST / 11am EDT
🤗 Open to all, welcome!
🎟 More info: https://blog.jetbrains.com/dotnet/2023/08/14/webinar-oss-powerups-bunit/

#dotnet #oss #powerups #blazor #testing

jonhilton, to blazor

.NET 8 brings Blazor Server Side Rendering for your web apps.

But what about going "the other way" and accepting user input?

For that it's time to re-visit the humble form…

https://jonhilton.net/blazor-ssr-forms/

#Blazor #AspNetCore

paw, to blazor
@paw@mstdn.io avatar

Trying to serve up an RSS feed from and getting absolutely flummoxed.
Don't want to create a separate project - just want it to serve the feed directly all-in-one. Stumped.

dr_cox1911, to blazor
@dr_cox1911@masto.ai avatar

How hard is it in to render out a simple ascii-art? I use and simply want to display my ascii-art unchanged.

Can any dev chip in? I must be missing something...

TimPurdum, to dotnet
@TimPurdum@dotnet.social avatar

#GeoBlazor Release v2.3.0 is now available! It includes an array of new features, layers, widgets and more that will take your GeoBlazor experience to new heights. #dotnet #blazor #gis #arcgis

bitbonk, to dotnet
@bitbonk@mastodon.social avatar

I think I am going to take one of my private jets and fly to this master class.
https://www.codeinacastle.com/blazor2023

ptrotter, to azure
@ptrotter@fosstodon.org avatar

Hey all, I need some help.

So... I've got a server-side app in 6 deployed as an Azure App Service.

Whenever I inject IHttpContextAccessor into a blazor page and attempt to access the HttpContext, it is always null.

Anyone know why this is the case?

image/png

adamhill, to dotnet
@adamhill@hachyderm.io avatar

XAML for Blazor is here!

Rising from the ashes of the insatiable thirst for the declarative UI from Silverlight.

Woot woot!

@shanselman

https://xaml-for-blazor.com/2023/07/10/introducing-xaml-for-blazor/

chucker, to blazor
@chucker@norden.social avatar

Surprising that this took so long (lots of Razor tooling improvements needed as a prerequisite?) but at least it’s happening — #Blazor will offer to generate an event handler for you

A Visual Studio screen demo that shows generating a method from within a button

dotnet, to blazor
@dotnet@dotnet.social avatar

❓Are you using #Blazor to develop web apps? We want to talk to you! Please sign up:

https://aka.ms/blazor/dev-survey
#dotnet

rockylhotka, to dotnet
@rockylhotka@fosstodon.org avatar
jamesmontemagno, to dotnet
@jamesmontemagno@mastodon.social avatar

What's that?!?! #dotnetconf 2023 is happening November 14-16th!!!!!!!! 80+ Sessions, 24-hr continuous broadcast, .NET 8 launch, LIVE LIVE LIVE! All happening for FREE!!!

Read all about it https://devblogs.microsoft.com/dotnet/dotnet-conf-2023-celebrating-the-release-of-dotnet-8-save-the-date/

#dotnet #dotnetmaui #aspnetcore #blazor

dazfuller, to blazor
@dazfuller@mstdn.social avatar

Having spent the entire day battling with circuit disconnects when the JS work becomes to heavy for #Blazor I can honestly say it is now one of my least favourite web technologies

breakpointshow, to blazor
@breakpointshow@mastodon.social avatar

🎙️ Exciting News! 🎉 Introducing the new podcast "The Breakpoint Show" 🎧 - Your ultimate tech rendezvous with @khalidabuhakmeh @maartenballiauw @cwoodruff ! 🚀 Join us for our debut episode, "Blazor United & HTMX," as we dive into the world of web development frameworks. 💻 #WebDevelopment #Blazor #HTMX https://breakpoint.show

breakpointshow, to blazor
@breakpointshow@mastodon.social avatar

🎙️ Exciting News! 🎉 Introducing the new podcast "The Breakpoint Show" 🎧 - Your ultimate tech rendezvous with @khalidabuhakmeh @maartenballiauw @cwoodruff ! 🚀 Join us for our debut episode, "Blazor United & HTMX," as we dive into the world of web development frameworks. 💻 #WebDevelopment #Blazor #HTMX https://www.breakpoint.show

khalidabuhakmeh, to dotnet
@khalidabuhakmeh@mastodon.social avatar

If you’re even remotely interested in #WebAssembly and #dotnet, you should watch our latest webinar. It’s in my top webinars of the year because it’s new and exciting information, and Joshua has so much brain food for you to chew on.

Also, remember to like and subscribe :) #Blazor #aspnetcore

https://www.youtube.com/watch?v=jkve_v1Xxak&t=502s

khalidabuhakmeh, to dotnet
@khalidabuhakmeh@mastodon.social avatar

I uploaded a sample #dotnet project for #Blazor united showing all the paradigms in the next release of #aspnetcore.

There are four that stick out, but I may have missed some:

  • Server-side (Plain-old HTML)
  • Server-side Streaming (HTML, but streamed as processing occurs on the server)
  • Blazor Server (Web sockets)
  • Blazor Wasm

Give it a try :)

https://github.com/khalidabuhakmeh/Blazor-United

khalidabuhakmeh, to blazor
@khalidabuhakmeh@mastodon.social avatar

I created a #Blazor sample with all the paradigms in #dotnet 8:

  • Server rendered (no web sockets or Wasm)
  • Server-rendered streaming (no web sockets or Wasm, but faster TTFB)
  • Blazor Server (web socket)
  • Blazor Wasm isolated components (Wasm)

This gives #aspnetcore devs more options for building experiences with Blazor.

Which of these do you find most compelling, and why?

Blazor application for dotnet 8

khalidabuhakmeh, to blazor
@khalidabuhakmeh@mastodon.social avatar

If you’re interested in for I have a sample project for you with a Readme pointing out all the points of interest. Also some initial and general thoughts.

https://github.com/khalidabuhakmeh/Xaml-For-Blazor-Sample

khalidabuhakmeh, to dotnet
@khalidabuhakmeh@mastodon.social avatar

OpenSilver (the folks that brought you #dotnet Silverlight with Wasm) are introducing Xaml For Blazor, which lets you use Xaml controls in your #Blazor #Wasm applications.

It’s kind of wild that it’s possible. https://xaml-for-blazor.com/doc/

rockylhotka, to windows
@rockylhotka@fosstodon.org avatar
rockylhotka, to blazor
@rockylhotka@fosstodon.org avatar

One of the key benefits of is the ability to host your app on a web server, in the browser via , or within a or other smart-client app - all without changing your app code.

Do your users need to be able to run offline, or need "infinite" scaling without heavy server load? Use or . Do you want to keep all your code on the server and minimize impact on the client device? Use Blazor Server.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • GTA5RPClips
  • thenastyranch
  • ethstaker
  • everett
  • Durango
  • rosin
  • InstantRegret
  • DreamBathrooms
  • magazineikmin
  • Youngstown
  • mdbf
  • slotface
  • tacticalgear
  • anitta
  • kavyap
  • tester
  • cubers
  • cisconetworking
  • ngwrru68w68
  • khanakhh
  • normalnudes
  • provamag3
  • Leos
  • modclub
  • osvaldo12
  • megavids
  • lostlight
  • All magazines