protected void Page_Load(object sender, EventArgs e)
 {
     WhatsNewContentTableAdapter whts = new WhatsNewContentTableAdapter();
     dlWhats.DataSource = whts.GetWhatsNew();
     dlWhats.DataBind();
 }
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Request.IsAuthenticated && Request.CurrentExecutionFilePath != "/UnauthorizedAccess.aspx" &&
                 Request.CurrentExecutionFilePath != "/about-us.aspx" && Request.CurrentExecutionFilePath != "/memberreg.aspx" &&
                 Request.CurrentExecutionFilePath != "/pwdrecovery.aspx" && Request.CurrentExecutionFilePath != "/Contactus.aspx" && Request.CurrentExecutionFilePath != "/Clients.aspx" &&
                 Request.CurrentExecutionFilePath != "/sitemap.aspx" &&
                (Request.CurrentExecutionFilePath != "/Home.aspx" || Request.QueryString["ReturnUrl"] != null))
            {
                Server.Transfer("~/UnauthorizedAccess.aspx");
            }
            else if (Page.AppRelativeVirtualPath != "~/Home.aspx" && Page.AppRelativeVirtualPath != "~/memberreg.aspx" && Page.AppRelativeVirtualPath != "~/pwdrecovery.aspx"
                && Page.AppRelativeVirtualPath != "~/about-us.aspx" && Page.AppRelativeVirtualPath != "~/Contactus.aspx" && Page.AppRelativeVirtualPath != "~/Clients.aspx"
                && Page.AppRelativeVirtualPath != "~/changepwd.aspx" && Page.AppRelativeVirtualPath != "~/editprofile.aspx"
                && Page.AppRelativeVirtualPath != "~/UnauthorizedAccess.aspx")// && Page.AppRelativeVirtualPath != "~/WHShow.aspx"
                //&& Page.AppRelativeVirtualPath != "~/WHView.aspx" && Page.AppRelativeVirtualPath != "~/ViewTaxUpdate.aspx"
                //&& Page.AppRelativeVirtualPath != "~/ShowContents.aspx" && Page.AppRelativeVirtualPath != "~/ViewContent.aspx")
            {
                cph_right.Visible = false;
            }
            else
            {

                HomeContentsTableAdapter hContentsadptr = new HomeContentsTableAdapter();
                HomeContents.HomeContentsDataTable hContents = hContentsadptr.GetContentByType("Department News", 2);
                foreach (HomeContents.HomeContentsRow row in hContents)
                {
                    //int len = 90 - row.Title.Length;
                    //if (row.Data.Length > len && len > 0)
                    //    row.Data = row.Data.Substring(0, len);
                    if (row.Title.Length > 90)
                        row.Title = row.Title.Substring(0, 90);
                }
                dlDeptNews.DataSource = hContents;
                dlDeptNews.DataBind();

                HomeContents.HomeContentsDataTable rGst = hContentsadptr.GetContentByType("Right Guest", 1);
                foreach (HomeContents.HomeContentsRow row in rGst)
                {
                    //int len = 190 - row.Title.Length;
                    //if (row.Data.Length > len && len > 0)
                    //    row.Data = row.Data.Substring(0, len);
                    if (row.Title.Length > 250)
                        row.Title = row.Title.Substring(0, 250);
                }
                dlRGuest.DataSource = rGst;
                dlRGuest.DataBind();

                HomeContents.HomeContentsDataTable lGst = hContentsadptr.GetContentByType("Left Guest", 1);
                foreach (HomeContents.HomeContentsRow row in lGst)
                {
                    //int len = 190 - row.Title.Length;
                    //if (row.Data.Length > len && len > 0)
                    //    row.Data = row.Data.Substring(0, len);
                    if (row.Title.Length > 250)
                        row.Title = row.Title.Substring(0, 250);
                }
                dlLGuest.DataSource = lGst;
                dlLGuest.DataBind();

                WhatsNewContentTableAdapter whts = new WhatsNewContentTableAdapter();
                dlWhats.DataSource = whts.GetWhatsNew();
                dlWhats.DataBind();
            }
            if (!Page.IsPostBack)
            {

                if (Request.IsAuthenticated)
                {

                    if (!string.IsNullOrEmpty(Request.QueryString["ReturnUrl"]))
                    {
                        // This is an unauthorized, authenticated request...
                        Response.Redirect("~/UnauthorizedAccess.aspx");
                    }
                }
            }
            if (Page.User.Identity.Name != "")
            {
                Label lblWlcmName = (Label)LoginView1.FindControl("lblWlcmName");
                if (Session.IsNewSession)
                {
                    FormsAuthentication.SignOut();
                    //FormsAuthentication.RedirectToLoginPage();
                    Response.Redirect("~/Home.aspx");
                }
                else
                {
                    lblWlcmName.Text = Session["UFName"].ToString();
                }
            }
            //news_GetDescriptionTableAdapter desc = new news_GetDescriptionTableAdapter();
            //DataTable dtDesc = desc.GetDescription();
            //if (gdvNews != null && gdvNews.Visible && dtDesc.Rows.Count > 0)
            //{
            //    gdvNews.DataSource = dtDesc;
            //    gdvNews.DataBind();
            //}
        }