Advertisement
Advertisement
| 02.11.2008 at 10:55AM PST, ID: 23153942 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
private void dgAttachedWordings_DeleteCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
DataTable attachedWordingsTable = this.Session[ATTACHED_WORDINGS_TABLE] as DataTable;
int intWordingCode = GetColNum(dgAttachedWordings.Columns, "Wording Code");
foreach(DataRow row in attachedWordingsTable.Rows)
{
if (row[0].ToString() == e.Item.Cells[intWordingCode].Text)
{
row.Delete();
attachedWordingsTable.DefaultView.Sort = "SortCode ASC, WordingCode ASC";
this.Session[ATTACHED_WORDINGS_TABLE] = attachedWordingsTable;
dgAttachedWordings.DataSource = attachedWordingsTable;
dgAttachedWordings.DataBind();
return;
}
}
}
|