/// Deal with the REMOVE action
string lcAction = Request.QueryString["Action"];
if (lcAction != null && lcAction == "Remove")
{
string Pk = Request.QueryString["item"];
if (Pk != null)
{
int LineItemPk = int.Parse(Pk);
// Remove the lineitem from the table
Invoice.LineItems.RemoveLineItem(LineItemPk, (int)InvPk);
// Remove from the DataTable so we don't have to reload
Invoice.LineItems.RemoveLineItemFromCollection(LineItemPk, (int)InvPk);
}
My question is: what logic would be needed to simply display the data for the detail line selected in the shopping cart?