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 answers
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
- Failed to fetch dynamically imported module on Blazor JS Interop
- Implementing Azure AD B2C Authentication in .NET 8 Blazor Project (RenderMode: InteractiveAuto)
- New Blazor Web App, Password Reset "A valid antiforgery token was not provided"
- How to share authorization implemented in the server project with the client project in Blazor Web App Auto project?
- My Blazor UI is not responding on a domain, but working on another domain
- Telerik Blazor GridCommandButton not working
- How to set language in a server-side rendering blazor app
- Stopwatch loosing time in a browser using blazor and web assembly when browser put in background
- How to Nest a TelerikGrid inside TelerikForm with Blazor
- Blazor/Razor resolve components using dependency injection
- UI not updating after resetting object
- 3rd Party cookies error on deployment server
- Blazor DbContext in a service
- Blazor Web App (.Net 8) with oidc loses auth when switching to client
- Why Blazor 8 prerendering does not render all of the page?
Related Questions in VISUAL-STUDIO-2022
- Visual Studio scaffolded Create form does not work in ASP.NET Core 8 MVC
- Finding a specific colour within a bitmap range - VB.net 2022
- How to enable warning C6067 during (WDM) Windows driver compilation in VS 2022?
- What should I do if Visual Studio has a restriction on creating files with a long name or a long path to these files?
- new window with c++ qt
- Migrate Old VS 2015 .suo file to the New VS 2022 DocumentLayout.json
- The file "spng.dll" is not founded in my Visual Studio's project and i get an error
- Getting MSB3174 Invalid value for 'AssemblyVersion' in C# .NET 6 Windows Forms app
- Why do I get weird class method redefinition errors when I compile with Visual C++ 2022?
- Opening external files (docs, picttures, ...) form commentlines in VisualStudio 2022
- New install of Visual Studio 2022 does not show project templates
- How to create a REST API with .NET Framework?
- After reinstalling VS 2022 professional, my project compilation returns warning C4566
- Why am I getting intellisense in .cshtml comments and how to do I turn it off in VS2022 17.9.5?
- How to find winform application in visual studio 2022?
Related Questions in PROJECT-TEMPLATE
- When converting an existing ASP.Net Core Angular App to use the new VS2022 Project Template why does the Angular content not publish?
- How to add a File in vstemplate in a back folder?
- What does 'interactivity location' mean when creating a Blazor App from a template?
- Visual Studio 2022: Custom template won't replace parameters (and appears twice)
- No Microsoft Identity Authentication Type for "Blazor Web App" Project Template?
- When starting a new Android Studio project, which templates are for Jetpack Compose, do the green vs purple ones have a meaning?
- How to Create a Folder in Project using Custom IWizard in VSIX
- Configuration file v2 (.readthedocs.yaml) not working with project-template
- How to enable "Additional Information" window in Visual Studio 2022 during creating a new project from a custom template
- How to configure/remove fields from the "Configure your new project" when creating a new project template in visual studio
- Visual Studio | Determine Template Type of an existing Project
- Missing Extensibility VSIX project template
- Create C# Project Templates in Visual Studio 2022 (.NET6)
- Nuget PackageReference found in one solution, but not in my own solution
- Use custom .NET Core templates in Visual Studio 2022
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?
Popular Tags
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)

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.