Hi,
Please replace below code
DateTime del = (Convert.ToDateTime((TextBox)(OrderDetails.Rows[e.RowIndex].FindControl("txtDelDate"))));
with
DateTime del = Convert.ToDateTime(((TextBox)(OrderDetails.Rows[e.RowIndex].FindControl("txtDelDate"))).Text);
for more information refer updating part of below article