Hi
Below code is to store the order in Shopping Cart of user which store in a session, but how i can make this code store the order in both cookie and session so in case if the user block the cookie then the code will be able to store it in a session
protected void nextpaybtn_Click(object sender, EventArgs e)
{
DataTable tbl;
if (Session["SCart"] == null)
{
tbl = new DataTable();
tbl.Columns.Add("Date");
tbl.Columns.Add("Price");
tbl.Columns.Add("PayMeth");
tbl.Columns.Add("UID");
tbl.Columns.Add("Product");
tbl.Columns.Add("SubTotal");
} else
tbl = (DataTable)Session["SCart"];
DataRow row = tbl.NewRow();
row[0] = DateTi ...
Go to the complete details ...