Reputation: 1
Any one please can help me to see why not show it the images
<img src="~/images/Loading.gif" alt="Loading" />
Images
well it suppose that have to show the images but not working
Upvotes: 0
Views: 143
Reputation: 9112
The tilde (~) is interpreted by Asp.Net component, but as this is a native html img element, just remove the tilde and leading slash:
<img src = "images/Loading.gif" alt ="Loading" />
Upvotes: 1