Delete from Datagrid

Hi
I have got a question.
I want to delete a row (selected row) from a DataGrid. HOw can I achieve this task..Following is DeletCOmmand Event Handler and Specification for DataGrid..
Thanks a ton
Shash
------------------------

private void dg_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
int rowtobedeleted = e.Item.ItemIndex;
//Delete code goes here
dg.DataBind();
}

------------------------
<asp:datagrid id="dg" tabIndex="1" runat="server" HorizontalAlign="Center" BorderColor="#DEBA84"
AlternatingItemStyle-BackColor="#EEEEEE" ItemStyle-BackColor="#FFFFCC" Width="697px" Height="8px"
BackColor="#DEBA84" BorderStyle="None" BorderWidth="1px" CellPadding="3" CellSpacing="2">
<SelectedItemStyle Font-Bold="True" ForeColor="White" BackColor="#738A9C"></SelectedItemStyle>
<AlternatingItemStyle BackColor="#EEEEEE"></AlternatingItemStyle>
<ItemStyle ForeColor="#8C4510" BackColor="#FFF7E7"></ItemStyle>
<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#A55129"></HeaderStyle>
<FooterStyle ForeColor="#8C4510" BackColor="#F7DFB5"></FooterStyle>
<Columns>
<asp:EditCommandColumn ButtonType="LinkButton" UpdateText="Update" CancelText="Cancel" EditText="Edit"></asp:EditCommandColumn>
<asp:ButtonColumn Text="Delete" CommandName="Delete"></asp:ButtonColumn>
</Columns>
<PagerStyle HorizontalAlign="Center" ForeColor="#8C4510" Mode="NumericPages"></PagerStyle>
</asp:datagrid></form>

------------------------
[1730 byte] By [shash] at [2007-11-19 2:09:50]