从数据库检索图像?

时间:2019-05-27 10:37:56

标签: c# asp.net-mvc

我有一个要在页面上显示的带有nvarchar图像文件的模型。我该如何做而不返回数据库?

它如何显示图像?below is the image

<td rowspan="3">
                            @*<img src="~/images/@item.img" width="100" height="100" />*@
                                                @{
                                                    var imgsrc = "url_to_your_default_image"; // useful when image is not available
                                                    if (item.img != null)
                                                    {

                                                        var base64 = Convert.ToBase64String(item.img);
                                                        imgsrc = string.Format("data:image/jpg;base64,{0}", base64);
                                                    }
                                                    <img src='@imgsrc' style="max-width:100px;max-height:100px" />
                                                }
                                            </td>

0 个答案:

没有答案