yashvant k

yashvant k

  • NA
  • 29
  • 0

problem in check box of grid

May 7 2010 10:02 AM
i am not able to see checkbox in grid.

<asp:GridView ID="GridView1" runat="server" Height="138px" 
        Width="591px" AutoGenerateColumns ="False"   BackColor="White" 
    CellPadding="10" AlternatingRowStyle-BackColor="#e6f7ff" AllowPaging="True" 
    PageSize="8" OnPageIndexChanging="gvPageIndexChanged">
    
       <PagerSettings FirstPageText="&amp;lt;&amp;lt;&amp;nbsp;&amp;nbsp;"
            LastPageText="&amp;nbsp;&amp;nbsp;&amp;gt;&amp;gt;" NextPageText="&amp;nbsp;&amp;nbsp;Next"
            PreviousPageText="Prev&amp;nbsp;&amp;nbsp;" />
       <HeaderStyle   ForeColor="Black" CssClass="head"  ></HeaderStyle>
                            <RowStyle CssClass="gvrowstyleread" ForeColor="black"  />
       <PagerStyle CssClass="gridview"  />
        
                            <Columns >
                                <asp:CheckBoxField HeaderText="Select" />
                                <asp:BoundField DataField="Question" HeaderText="Question" >
                                    <ItemStyle Font-Size="Small" HorizontalAlign="Left" VerticalAlign="Middle" />
                                </asp:BoundField>
                                <asp:BoundField DataField="Answer" HeaderText="Answer" >
                                    <ItemStyle Font-Size="Small" HorizontalAlign="Left" VerticalAlign="Middle" />
                                </asp:BoundField>
                                <asp:BoundField DataField="DOC" HeaderText="Date Of Posting" 
                                    DataFormatString="{0:d}" >
                                    <ItemStyle Font-Names="Verdana" Font-Size="Small" HorizontalAlign="Center" 
                                        VerticalAlign="Middle" />
                                </asp:BoundField>
                                <asp:BoundField DataField="UserName" HeaderText="User" >
                                    <ItemStyle Font-Names="Verdana" Font-Size="Small" HorizontalAlign="Left" 
                                        VerticalAlign="Middle" />
                                </asp:BoundField>
                                <asp:BoundField DataField="schoolname" HeaderText="School No." >
                                    <ItemStyle Font-Names="Verdana" Font-Size="Small" HorizontalAlign="Left" 
                                        VerticalAlign="Middle" />
                                </asp:BoundField>
                            </Columns>
                            <HeaderStyle CssClass="head" Height="55" Font-Size="11"  />

 
<AlternatingRowStyle BackColor="#E6F7FF"></AlternatingRowStyle>

 
 </asp:GridView>

Answers (4)