No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
1 Posted Topic
<asp:datagrid id="dg1" style="Z-INDEX: 101; LEFT: 160px; POSITION: absolute; TOP: 112px" runat="server" AutoGenerateColumns="False" dataKeyField="SNo" OnEditCommand="DoItemEdit" OnDeleteCommand="DoItemDelete" OnUpdateCommand="DoItemUpdate"> <Columns> <asp:BoundColumn Visible="False" DataField="SNo" HeaderText="SNO"></asp:BoundColumn> <asp:BoundColumn Visible="False" DataField="name" HeaderText="Name"></asp:BoundColumn> <asp:TemplateColumn HeaderText="Chemical Name"> <ItemTemplate> <asp:Label id="Label3" Text='<%# Container.DataItem("name") %>' Runat="server"> </asp:Label> </ItemTemplate> <FooterTemplate> <asp:TextBox ID="txtachemical" Runat="server"></asp:TextBox> </FooterTemplate> <EditItemTemplate> <asp:TextBox id="txtchemical" runat="server" Text='<%# container.dataitem("name") %>'> </asp:TextBox> …
The End.
altafnazir