在ASP.NET MVC5中上传图像时如何显示图像

时间:2018-09-15 13:28:07

标签: asp.net-mvc asp.net-mvc-5

上传后我不会显示或预览图片

我的代码在这里:

Html.Label(“浏览文件”,htmlAttributes:new {@class =“ control-label col-md-2”})                                          

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

1 个答案:

答案 0 :(得分:0)

我的问题解决了Thant的 这是我的代码

 @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])">

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


      &lt;/div

>