I published my azure website (asp.net with c# controller) as a WebApp but when I call the website there are no picture.
If I deploy the website on LocalHost I can see the picture.
<img class="img-responsive" style="height:90%;width:90%" src="../Content/images/test.png" />
I also tried to change the path to:
src="~/Content/images/test.png" /
src="/Content/images/test.png" /
But after uploading the webapp I cannot see any picture.
In other question I read that I have to use Azure Blob Storage. But I just have a few (ca. 5 picture) on my website. Maybe there is a simpler way?
Or is it possible to upload the file and create the image folder in the azure portal?
yourwebsite.scm.azurewebsites.net
and browsed your uploaded content (which will be ind:\home\site
) to see if your images are there where expected? – David Makogon