NebroProg Ответов: 1

Как отобразить изображение, когда оно загружено в ASP.NET mvc5


Я не буду отображать или просматривать изображение при его загрузке

Что я уже пробовал:

@Html.Label("Browse File", htmlAttributes: new { @class = "control-label col-md-2" })
                  <div class="col-sm-4">
                      <input type="file" id="FileUpload1" class="form-control" />

                  </div>
                <div class="col-sm-4">
                    @Html.Label("Logo", htmlAttributes: new { @class = "control-label col-md-2" })
                    <img src="@Url.Content("FileUpload1")" alt="Image" />
                </div>

1 Ответов

Рейтинг:
8

NebroProg

моя проблема решена Тантская
вот мой код

@Html.Label("Browse File", htmlAttributes: new { @class = "control-label col-md-2" })
                  <div class="col-sm-4">
                      <input type="file" id="FileUpload1" class="form-control"  onchange="document.getElementById('logoImage').src = window.URL.createObjectURL(this.files[0])">

                  </div>
                   <div class="col-sm-4">
                       @Html.Label("Logo Image", htmlAttributes: new { @class = "control-label col-md-2"})
                       <img id="logoImage" src="FileUpload1" alt="Logo Image" width="100" height="100" style="border:1px ;margin-top:20px; margin-left:120px;" />
                       </div>