I keep encountering the below Chrome console error while it sounds like my code is correct.
@page "/"
@using System.Net.Http.Json
@using System.Text.Json
@using System.Diagnostics
@inject HttpClient Http
<form>
<h1>AI Image Generator</h1>
<div class="form-group">...
I am new to asp.net core. I have a form which is generated dynamically. I want the validation error message to be "The value must be numeric" instead I get
"The value 'a' is invalid" when I submit the form.
Here is my View Model:
[RegularExpression("^[0-9]*$", ErrorMessage = "The value must...
I am new to ASP.NET Core. I have written a code that works on my local computer but when I publish the app to our test environment the behavior is strange. The scenario is as follows:
When the user clicks a link, the app exports data to an excel file which is downloaded. On my PC / dev env, the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.