python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Running razor pages hosted, blazor web assembly, application on IIS 10
I have created a razor pages application which hosts several blazor wasm components on various pages.
It runs perfectly okay in visual studio with no errors reported in the browser developer tools con...
cantcodewontcode
Votes: 0
Answers: 1
Blazor InputText with Required attribute but Disabled
So I have a model, other properties removed for brevity:
public class OutOfLimitReasonViewModel
{
[Required]
public int ReasonId { get; set; }
[Required(ErrorMessage = "Other Reason i...
Grandizer
Votes: 0
Answers: 1
Is there a way to Replicate the FormData interface from javascript in Blazor Web Assembly
I have been trying to post a multipart/form-data using Blazor Web assembly, but have not been successful. I have tried using MultipartFormDataContent() etc, but can't get it to send the data the same ...
Mervyn Ludick
Votes: 0
Answers: 1
Adding headers to every response of an Blazor WASM in .NET 6
I created a simple (so far) Blazor WebAssembly application in .NET 6.
I'm currently adding additional HTTP requests to every response of the application and wanted to add an X-FRAME-OPTIONS header, bu...
Maurice Klimek
Votes: 0
Answers: 1