salvador castillo
salvador castillo

Reputation: 1

Images no show on Blazor

Any one please can help me to see why not show it the images

<img src="~/images/Loading.gif" alt="Loading" />

Images

1

well it suppose that have to show the images but not working

Upvotes: 0

Views: 143

Answers (1)

Neil W
Neil W

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

Related Questions