Nirav Vasoya
Nirav Vasoya

Reputation: 366

Facing issue while loading images in Razor pages using Areas Folder structure

  1. Areas/Project/Pages/Create.cshtml Page.

enter image description here

  1. I have below folder structure in my project (Asp.Net Core 3.1 Razor page), I want to access images(wwwroot/images) in Areas/Project/Pages/Create.cshtml Page.

enter image description here

  1. I am getting this error in https://localhost:44375/Project/Create page

enter image description here

Upvotes: 0

Views: 285

Answers (1)

Rajdeep D
Rajdeep D

Reputation: 3910

Please check the below. It's working

<img src="/images/1.jpg" />

enter image description here

enter image description here

Upvotes: 1

Related Questions