Hello,
I'm using Syncfusion richtexteditor in ASP.net core 6 MVC project. I'm trying to follow the documentation guide https://ej2.syncfusion.com/aspnetmvc/documentation/rich-text-editor/image?cs-save-lang=1&cs-lang=razor
but I don't understand a solution.
In the solution, I have a WebAPI project and an MVC project.
The folder structure is WebAPI/Controllers/ImageController.cs and inside the ImageUpload(IFormFile file) function.
MVC/Views/Project/AddProject.cshtml and inside:
<ejs-richtexteditor id="Description" asp-for="Description">
<e-richtexteditor-insertimagesettings saveurl="https://localhost:7093/api/Image/ImageUpload" path="~/UploadedFiles/images"></e-richtexteditor-insertimagesettings>
</ejs-richtexteditor>.
While I try to upload an image from the editor I have 400 Bad Request. Do you have any ideas on how to solve the problem? I think
saveurl and path aren't correct