Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目中,我在我的 mssql 数据库中保存了一些“位”类型 (true,false) 的数据,然后在 gridview (asp.net - c#) 中显示它们。他们显示为复选框。问题:我可以在gridview 中显示来自主机(而不是来自数据库)的列的图片吗? 示例:当值为 True 时 pic1.png 显示在列中?!
使用Visible您使用的图像控件的属性。
Visible
<asp:Image ID="myImage" runat="server" ImageUrl="~/Images/myImage.gif" Visible='<%# DataBinder.Eval(Container.DataItem, "bitColumn") == null ? false: DataBinder.Eval(Container.DataItem, "bitColumn") %>' />