using System;

using System.Collections;

using System.Configuration;

using System.Data;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

 

public partial class Portfolio : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        Control pnl = Classes.Functions.RecursiveFindControl(this, "MainContentPanel");

        if (pnl != null)

           (pnl as Panel).BackColor = System.Drawing.Color.White;

    }

}