why the extra row is coming after each row in gridview..? [closed]

peetlyJeddy

New Member
why i extra row iss coming after each row in gridview..??\[code\]<form id="form1" runat="server"> <%--<table border="0" cellpadding="0" cellspacing="0">--%> <asp:GridView ID="gvImage" runat="server" AutoGenerateColumns="false" BorderWidth="0" GridLines="Both" Width="200px"> <Columns> <asp:TemplateField> <HeaderTemplate> <tr> <td> IMAGE </td> <td> IMAGE NO </td> <td> RES </td> </tr> </HeaderTemplate> <ItemTemplate> <tr> <td> <asp:Label ID="lbl" runat="server" Text='<%# Eval("ImageName") %>'></asp:Label> </td> <td> <asp:Label ID="Label1" runat="server" Text='<%# Eval("ImageNo") %>'></asp:Label> </td> <td> <asp:Label ID="Label2" runat="server" Text='<%# Eval("ResType") %>'></asp:Label> </td> </tr> </ItemTemplate> </asp:TemplateField> <%--<asp:TemplateField> <FooterTemplate> </table> </FooterTemplate> </asp:TemplateField>--%> </Columns> </asp:GridView> </table> </form>\[/code\]
 
Back
Top