© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•3y ago
TotechsStrypper

Blazor net 8 InteractiveServer mode problem

I have .net 8 blazor app that enable the following
@rendermode InteractiveServer
@attribute [StreamRendering]
@rendermode InteractiveServer
@attribute [StreamRendering]

When I run the app localhost the all the button interactions are responds just fine,
When I deploy the app to azure, Some button work some don't especially this one with the logic
    private async Task CopyToClipboard(string text)
    {
        await ClipboardService.SetTextAsync(text);
        ToastService.ShowToast(ToastIntent.Success, "Copied to clipboard");
    }
    private async Task CopyToClipboard(string text)
    {
        await ClipboardService.SetTextAsync(text);
        ToastService.ShowToast(ToastIntent.Success, "Copied to clipboard");
    }
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Using IdentityCore with InteractiveServer rendermode (Blazor .NET 8)
C#CC# / help
3y ago
.NET 8, Blazor InteractiveServer with StreamRendering causing double rendering
C#CC# / help
3y ago
Authentication problem with InteractiveServer render mode
C#CC# / help
2y ago
.NET 8 / Blazor Server+WASM / Configuration
C#CC# / help
2y ago