如何检索图像并在网格视图中显示?

时间:2014-12-30 16:56:40

标签: c# mysql asp.net

以下是表council_member的模式 Council_member(电子邮件,姓名,联系方式,性别,图片,团队,部门,社会); 我正在使用网格视图,然后通过SQL数据源检索所有数据。但问题是图片没有显示。 这是我的asp.net代码:

<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AutoGenerateColumns="False" CellPadding="4" DataKeyNames="Email" ForeColor="#333333" GridLines="None">
            <AlternatingRowStyle BackColor="White" />
            <Columns>
                <asp:BoundField DataField="Email" HeaderText="Email" ReadOnly="True" SortExpression="Email" />
                <asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
                <asp:BoundField DataField="Contact" HeaderText="Contact" SortExpression="Contact" />
                <asp:BoundField DataField="gender" HeaderText="gender" SortExpression="gender" />
                <asp:BoundField DataField="Team" HeaderText="Team" SortExpression="Team" />
                <asp:BoundField DataField="Dept" HeaderText="Dept" SortExpression="Dept" />
                <asp:BoundField DataField="Society" HeaderText="Society" SortExpression="Society" />
            </Columns>
            <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
            <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
            <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
            <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
            <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
            <SortedAscendingCellStyle BackColor="#FDF5AC" />
            <SortedAscendingHeaderStyle BackColor="#4D0000" />
            <SortedDescendingCellStyle BackColor="#FCF6C0" />
            <SortedDescendingHeaderStyle BackColor="#820000" />
        </asp:GridView>

        <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:Webappconstring %>" ProviderName="<%$ ConnectionStrings:Webappconstring.ProviderName %>" SelectCommand="SELECT * FROM council_member"></asp:SqlDataSource>

那么,什么是检索和显示图像的语法(以任何格式)? PS:我是新手

1 个答案:

答案 0 :(得分:0)

以下链接可能会对您有所帮助:

http://msdn.microsoft.com/en-us/library/aa479350.aspx

相关问题