SignalR Multiple Hub Connection .NET Core
I have 2 Hub classes,
I have 2 Hub classes,
I would like to install ReCaptcha to our Umbraco Version 7. But I can’t seem to find the correct approach. Basically I want to add the captcha element inside my custom form (not the Umbraco Form). Is there a way to do it? It seems the approach of adding the Recaptcha is not the same as how you add it in PHP application. How should I do this in Umbraco?
I have 2 Blazor WA apps and 2 ASP.NET Core Web Application servers which communicate via SignalR (one Blazor WA talks to one ASP.NET Core Web Application server, and another Blazor WA talks to it’s ASP.NET Core Web Application servers).
I’m using newest .Net 5 RC2. For some reason when I run debug, working directory is set to project directory, not “binDebugnet5.0-windows”. That causes some problems because I use some shared files from other projects (they are all copied into one folder on build) so it’s important for me to have working dir in $(TargetDir). I tried to achieve it with 2 ways:
Before posting this question I have gone through multiple posts that are similar. My question focuses on “why is it happening despite applying the common and possibly right solution?”.
ReportViewer control not showing Find Widget after upgrading Microsoft.ReportViewer from 11 to 15 version.This problem occurs if ShowExportControls is true. Both ShowExportControls and ShowFindControls are true. How can I fix this ?
I am trying to connect at elasticsearch server using .net and i can’t pass login step.
I use system.web, system.net, newtonsoft.json. I don’t have internet connection to download nest or elasticsearch.net.
I tried to acces the url using web.client but i had 401 error so i used this
I have a problem in EditUserProfile in razor page, so there is no problem showing the user information in the page, but when I press edit button, I get user information through the form but I can’t save or user it.
Starting new Visual Studio project from scratch, ASP.NET MVC.
Environments Asp.Net Core 5.0 Blazor WebAssembly App (Asp.Net Core Hosting) Asp.Net Core Identity (with Identity Server 4) Problem I want to use Role-based authorization between Server side and Client side. I can login correctly and UserManager.IsInRoleAsync(user, “admin”) returns True in the Server side. But neither @attribute [Authorize(Roles = “admin”)] nor <AuthorizeView Roles=”admin”> doesn’t work in … Read more