문제

I am new to mvc. I have created one web application in .

src="../../images/1.jpg"

This is working when I debug from project but it is not loading from iis. Can anybody help me?

도움이 되었습니까?

해결책 2

<img alt="Picture Display" src="<%= Url.Content("~/images/1.jpg")" />

this solved my problem

다른 팁

I will suggest you to use UrlHelper.Content Method, It converts a virtual (relative) path to an application absolute path.

Example

@Url.Content("~/images/1.jpg")

Here The ~ character matches the root of the site /.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top