I would assume this is referring to client or server, but with these as the options I can't quite figure this.
What does 'interactivity location' mean when creating a Blazor App from a template?
2.3k Views Asked by hamstar At
2
There are 2 best solutions below
3
Mateus Zampol
On
This refers to the new features added to Blazor in .NET 8
You can have your app be globally interactive (Blazor Server or WASM or both) or mixed (some components are static SSR and some interactive)
Related Questions in BLAZOR
- How to store data related to a Blazor Server circuit?
- MatTooltip not working with MatAutocompleteList in Blazor
- Blazor - Prevent double HTTP call and wait first one
- Blazor Webassembly Authentication is verry slow
- Blazor WASM Hosted - How to download a file using HttpPost
- How do I set my RadzenTextBox to String.Empty if a toggle is clicked
- Blazor clear memory with IDisposable
- CascadedParameter: When is its value applied to my components property
- Blazor child to parent two-way binding on input-text field
- How to apply signalR.js in a Screen sharing html page
- In a Blazor page (Not a Blazor component) why all methods and variables are private inside @code?
- Blazor not discovering new pages in subfolders
- Blazor app with ASP.NET Identity UI shared layuout template
- Blazor get a reference to clicked element
- C# Blazor This works but I am getting errors
Related Questions in VISUAL-STUDIO-2022
- Cannot use Ctrl+D shortcut binding to Edit.RemoveRow
- FlaUI reference a button by a Control instead of a string
- How can I capture a screen with a white background or a transparent screen with C# Winforms?
- How does Visual Studio 2022 handle double-to-long long out-of-range conversion?
- Cannot uninstall or repair Visual Studio 2022
- Connecting to Azure DevOps Git from Visual Studio 2022 Empties Solution Explorer
- Rounded context menus on Visual Studio Community 2022
- VS 2022 can not load designer for .Net 5 and Higher winforms projects
- What does vcxproj.user file do?
- Visual Studio checking naming convention for C++
- Visual Studio 2022, how to enable auto generation with two tabs instead of one?
- std::string_view behavior in modules with cmake
- General exception from debugger in Visual Studio 2022, debugger process might be corrupted
- Triggers in Blend Visual studio
- Windows Forms WorkSpace not showing anything in solution explorer and attach to process
Related Questions in PROJECT-TEMPLATE
- Is it possible to create a workspace with an Xcode Project Template?
- Edit .vstemplate file of project before it is a template
- How to debug IWizard-based project template
- GeneXus Platform SDK installer not working for Visual Studio 2015
- How to integrate R ProjectTemplate into R Markdown
- Visual Studio 2017 project template descriptions
- Xcode 8.3: how to install multiple custom "Project Templates" in Xcode 8.3?
- Creating a plugin bundle for iOS using XCode
- Create a Visual Studio project programmatically
- How could I specify a conditional compilation symbol within a MonoDevelop 2.8 project template (.xpt.xml)?
- Azure Cloud Template Missing
- No project template for a ‘WPF Ribbon Application’ in VS 2010 after Microsoft Ribbon for WPF installation
- How to create a multi project template in visual studio 2013?
- Load a project template based on Wizard passed parameters
- $safeprojectname$ throwing errors in VSIX Package
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?

Lots of choice, but when you don't understand what they mean??????
The difference is where the render mode is set for the SPA.
When you select Global, the render mode is set in
App.razoron the two components. This overrides any "lower" settings in child components.The example below sets it to
InterActiveServer.When you select
Page/Component,Applooks likes this. No render modes defines so Server Side Rendered is default unless set specifically at the page or component level.Add this simple component to your solution and add it to any page. It will tell you what render state is being used for that page. It will also change state as the component switches from pre-rendered to fully interactive.
RenderContextState.razorFor instance:
All the WebAssembly modes on the
Blazor Web Apptemplate are AspNetCore Hosted. The template deploys a Server and Client project.If you want standalone WASM use the
Blazor WebAssembly Standalone Apptemplate.I'm in the middle of writing an article on this very [confusing] subject. I'll add a reference to this answer when it's complete.