HtmlEditor and Image

Warning:I don't speak English and use an online translator.The translation may not be correct.Thanks for understanding.

Hello, I have a problem.I'm trying to add an image through the html Editor, but I get the status code 400.The error appears when I have already selected the desired image in the "Insert image" window and click "ok"

For the test, I created a new Blazer Server project.

Created a repository to demonstrate the entire project.Maybe I didn't connect everything and that's why the problem is.

Hi @BCEBOLOD,

It seems your application hasn't fully enabled support for MVC controllers. You need this line in your Program.cs

app.MapControllers();

You can put it just before app.Run();

1 Like

Yes, thanks.It worked