i am able retrieve the image for imagebutton from db on to gridview and perform some events
but i am unable to view the complete image i.e, i am able to see only part of the image
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns = "False" Font-Names = "Arial" Caption = "UsingImageField">
<Columns>
<asp:BoundField DataField = "cProduct_id" HeaderText = "ID" />
<asp:TemplateField >
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" Height="100px" Width="100px" ImageUrl = '<%# Eval("cproduct_id", "ImageCSharp.aspx?ImageID={0}") %>' NavigateUrl = '<%# Eval("cproduct_id", "~/trail.aspx?Id={0}") %>' runat="server"></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>