protected void Page_Load(object sender, EventArgs e)
    {
        if (PreviousPage != null && PreviousPage.GetType().BaseType.FullName == "MainPage")
        {
            subscribe.Text = " Quiz on <span style=\"color:Green\">" + ((MainPage)PreviousPage).quizType +
                             "</span> is available only for Subscribed Users";
            subscribe.Visible = true;
            Label1.Visible    = true;
        }
        if (Request.Cookies["StudentMode"] == null)
        {
            Response.Cookies["StudentMode"].Value = "Preview";
        }

        if (Request.Cookies["StudentMode"] == null)
        {
            Response.Redirect("EnableCookie.aspx");
        }
    }