在服务器上保存的网格视图中显示图像
本文关键字:显示 显示图 图像 视图 网格 服务器 保存 | 更新日期: 2023-09-27 18:06:24
我有一个网格视图,我想在其中显示图像。我将图像存储在服务器上,路径存储在数据库中。路径为"C:''Inetpub''wwwroot''BISv01''Images''Upload''Chirag.jpg"当我从数据库中提取记录时,所有列都被提取,但图像在gridview中不可见。下面是我的网格视图的代码
<asp:GridView ID="grdCurrency" runat="server" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" CellPadding="4" ForeColor="#333333"
GridLines="None" onrowcommand="grdCurrency_RowCommand">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="CurrencyID" HeaderText="ID" />
<asp:BoundField DataField="CurrencyName" HeaderText="Currency" />
<%--<asp:BoundField DataField="" HeaderText="Logo" />--%>
<asp:ImageField DataImageUrlField="CurrencyLogo" HeaderText="Currency Logo">
</asp:ImageField>
<asp:TemplateField>
<ItemTemplate>
<asp:Button ID="btnEdit" runat="server" Text="Edit"
CommandArgument='<%# Eval("CurrencyID") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
//下面是填充网格视图的代码。
DataTable dtCurrency = null;
dtCurrency=oCurrency.GetAllCurrency();
if (dtCurrency != null && dtCurrency.Rows.Count > 0)
{
grdCurrency.DataSource = dtCurrency;
grdCurrency.DataBind();
grdCurrency.Columns[0].Visible = false;
lblGrdCount.Text = "Total ["+grdCurrency.Rows.Count+"] records found";
}
请帮我指出我的错误。
首先不要存储完整的图像路径。您必须将图像路径存储为。。数据库中的CCD_ 1。
然后这将允许您显示图像。例如
<asp:TemplateField>
<ItemTemplate>
<asp:Image ImageUrl='<%#Eval("CurrencyLogo") %>' ID="Image1" runat="server" />
</ItemTemplate>
</asp:TemplateField>