Hi All
i have create my simply shopping cart as the below code, now when user click on the nextpaybtn and move to view 7 the label locate in the view7 didnt show the information of the session SCart i have used FormView and Datalist to bind the labels in view7
to show the information which stored inside the session SCart but nothing happen. please could any one give me a suggistion to how i can bind my control in view7 to show the info stored inside the session
protected void nextpaybtn_Click(object sender, EventArgs e)
{
if (Session["UsrNme"] != null)
{
DataTable tbl;
if (Session["SCart"] == null)
{
tbl = new DataTable();
tbl.Columns.Add("Date");
tbl.Columns.Add("Price");
tbl.Columns.Add("PayMeth");
tbl.Columns.Add(&q ...
Go to the complete details ...