X
Xarky
Hi,
I designed my datagrid as shown in the code below. I also succeded to
load the data into it.
Now I have added a push button remove, but I don't know how to handle
the event.
Can someone help me out.
Thanks in Advance
/******** for datagrid *********/
<aspataGrid DataKeyField="UserID" AutoGenerateColumns="False"
AllowSorting="True" CellPadding="3"
CellSpacing="2" id="dataGridShowUsers" style="Z-INDEX: 101; LEFT:
40px; POSITION: absolute; TOP: 160px"
runat="server" Width="674px" Height="216px" BorderColor="#CCCCCC"
BorderStyle="None" BorderWidth="1px"
BackColor="White">
<FooterStyle ForeColor="#000066" BackColor="White"></FooterStyle>
<SelectedItemStyle Font-Bold="True" ForeColor="White"
BackColor="#669999"></SelectedItemStyle>
<ItemStyle ForeColor="#000066"></ItemStyle>
<HeaderStyle Font-Bold="True" ForeColor="White"
BackColor="#006699"></HeaderStyle>
<Columns>
<asp:BoundColumn DataField="UserID" HeaderText="ID
Number"></asp:BoundColumn>
<asp:BoundColumn DataField="Name"
HeaderText="Name"></asp:BoundColumn>
<asp:BoundColumn DataField="Surname"
HeaderText="Surname"></asp:BoundColumn>
<asp:EditCommandColumn HeaderText="Delete" EditText="Remove"
ButtonType="PushButton"></asp:EditCommandColumn>
</Columns>
<PagerStyle HorizontalAlign="Left" ForeColor="#000066"
BackColor="White" Mode="NumericPages"></PagerStyle>
</aspataGrid>
I designed my datagrid as shown in the code below. I also succeded to
load the data into it.
Now I have added a push button remove, but I don't know how to handle
the event.
Can someone help me out.
Thanks in Advance
/******** for datagrid *********/
<aspataGrid DataKeyField="UserID" AutoGenerateColumns="False"
AllowSorting="True" CellPadding="3"
CellSpacing="2" id="dataGridShowUsers" style="Z-INDEX: 101; LEFT:
40px; POSITION: absolute; TOP: 160px"
runat="server" Width="674px" Height="216px" BorderColor="#CCCCCC"
BorderStyle="None" BorderWidth="1px"
BackColor="White">
<FooterStyle ForeColor="#000066" BackColor="White"></FooterStyle>
<SelectedItemStyle Font-Bold="True" ForeColor="White"
BackColor="#669999"></SelectedItemStyle>
<ItemStyle ForeColor="#000066"></ItemStyle>
<HeaderStyle Font-Bold="True" ForeColor="White"
BackColor="#006699"></HeaderStyle>
<Columns>
<asp:BoundColumn DataField="UserID" HeaderText="ID
Number"></asp:BoundColumn>
<asp:BoundColumn DataField="Name"
HeaderText="Name"></asp:BoundColumn>
<asp:BoundColumn DataField="Surname"
HeaderText="Surname"></asp:BoundColumn>
<asp:EditCommandColumn HeaderText="Delete" EditText="Remove"
ButtonType="PushButton"></asp:EditCommandColumn>
</Columns>
<PagerStyle HorizontalAlign="Left" ForeColor="#000066"
BackColor="White" Mode="NumericPages"></PagerStyle>
</aspataGrid>