0
votes
  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

1
Did you test this ? <img src="~/images/MyImage.jpg" /> - Afshin
Yes I have tried it, image actually locating to localhost:44375/Project/images/ic_dropdown_arrow.svg but Actually images is there in wwwroot folder and working with localhost:44375/images/ic_dropdown_arrow.svg - Nirav Vasoya
Did you check for case sensitiveness of your URL and path or incorrect spelling? - Afshin
Have you used app.UseStaticFiles();Maybe you can try to use an abosulte path - Yiyi You

1 Answers

1
votes

Please check the below. It's working

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

enter image description here

enter image description here