protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) { return; } S.Lang = C.Lang = (CommonMethods.GetCookieValue("Site_Language") == null) ? "en-US" : CommonMethods.GetCookieValue("Site_Language"); S.Show_ID = Request.QueryString["Show_Id"]; DataTable DT = S.GetShowByID().Tables[0]; C.Cat_ID = DT.Rows[0]["Show_Category"].ToString(); rpCategories.DataSource = C.GetCategories(); rpCategories.DataBind(); h2ShowTitle.InnerText = DT.Rows[0]["Show_Name"].ToString(); pDescription.InnerText = DT.Rows[0]["Show_Description"].ToString(); }