HtmlEditor and Image

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