web-dev-qa-db-fra.com

Comment afficher une image depuis un chemin dans asp.net MVC 4 et la vue Razor?

J'ai le modèle suivant:

public class Player
{


    public String ImagePath
    {
        get
        {
            return "~/Content/img/sql_error.JPG";
        }

    }

Et voici mon fichier .cshtml:

@model SoulMasters.Models.Game.Player

@{
ViewBag.Title = "Game";
Layout = "~/Views/Shared/_GameLayout.cshtml";
var imagePath = @Model.ImagePath;
}

<fieldset>
<legend>Player</legend>

   <div class="display-field">
    @Html.DisplayFor(model => model.ImagePath)
</div>
@imagePath
<div style="padding:10px;">

    <img src=@imagePath alt="Sample Image" width="300px" />

    <img  alt="asd" >
        model.ImagePath;
    </img>
</div>
</fieldset>

Le résultat est un texte simple:

~/Content/img/sql_error.JPG
~/Content/img/sql_error.JPG
Sample Image asd model.ImagePath;

En outre, j'ai essayé la ligne suivante, et cela fonctionne:

<img src="~/Content/img/sql_error.JPG" alt="Sample Image" width="300px" />

Comment afficher cette image à partir du chemin? Le chemin de l'image peut-il être différent en fonction des paramètres? D'autres idées?

Je ne comprends pas vraiment maintenant comment fonctionne la syntaxe du rasoir.

57
Sas Gabriel

Dans votre vue, essayez comme ceci

  <img src= "@Url.Content(Model.ImagePath)" alt="Image" />
121
Adithya

vous pouvez aussi essayer avec cette réponse:

 <img src="~/Content/img/@Html.DisplayFor(model =>model.ImagePath)" style="height:200px;width:200px;"/>
6
DKR

Essaye ça ,

<img src= "@Url.Content(Model.ImagePath)" alt="Sample Image" style="height:50px;width:100px;"/>

(or)

<img src="~/Content/img/@Url.Content(model =>model.ImagePath)" style="height:50px;width:100px;"/>
2
Parameswaran
 @foreach (var m in Model)
    {
      <img src="~/Images/@m.Url" style="overflow: hidden; position: relative; width:200px; height:200px;" />
    }
1
Debendra Dash