This is the cs file
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Success : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
lbl1.Text = Session["track_id"].ToString();
}
}
I am getting compilation error that "lbl1" is not present in the current context
Go to the complete details ...