SatoManami
SatoManami

Reputation: 29

How to use Blazor Serverside with Blazor WebAssembly?

Razor Serverside and JavaScript are possible mixed to use. But, I'm not good at Javascript. I want to make client side app with C#. Is it possible to use Razor ServerSide with Razor WebAssembly? Thank you.

Upvotes: 2

Views: 620

Answers (1)

TomTom
TomTom

Reputation: 62093

Is it possible to use Razor ServerSide with Razor WebAssembly?

What would be the sense of that? ServerSIde means it executes on the server and sends the UI updates to the client, ONLY. WebAssembly is a technology to run bytecode in the browser for client side applications.

You ask for a vegan real cor steak - not possible. Those 2 technologies contradict themselves, you use either one or the other.

Upvotes: 1

Related Questions