示例#1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        /*
         * Ignore this error.  It is a LIE.  A flithy LIE.  It really compiles.
         *      |
         *      |
         *      V
         */
        if (Request.Cookies[COOKIE_ID] != null)
        {
            //this.ti
            HttpCookie orgCookie = Request.Cookies[COOKIE_ID];
            titleLbl.Text = orgCookie.Value + " Movie Exchange";
        }
        //siteHeader.Attributes.Add("bgcolor", "red");
        //PageBody.Attributes.Add("bgcolor", "red");

        try
        {
            if (Request.Cookies[COOKIE_ID].Value != null)
            {
                Tuple <String, String> output = ColorDB.getColors(Request.Cookies[COOKIE_ID].Value);
                testingLabel.Text = output.Item1 + " " + output.Item2;
                PageBody.Attributes.Add("bgcolor", output.Item1);
                BackgroundPanel.Attributes.Add("BackColor", output.Item2);
            }
        }
        catch (Exception exp)
        {
            testingLabel.Text = exp.Message;
        }
    }
示例#2
0
 public void methodTest()
 {
     Tuple <String, String> output = ColorDB.getColors("Western Oregon University");
     String Color1 = output.Item1;
     String Color2 = output.Item2;
 }