Posted on: 7/17/2015 7:02:22 PM | Views : 840

I am getting this in my master cs file. here is the file. This program was written in 09 and I am trying to fix all the errrors.
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.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls;
using System.IO;
namespace EP.BumplesMagazine.UI { public partial class MasterPage : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) { String page = this.GetCurrentPageName();
if (page == "accessdenied.aspx" || page == "login.aspx" || page == "register.aspx") this.PanelLogin.Visible = false; else this.PanelLogin.Visible = true;
if (System.Web.HttpContext.Current.User.Identity.IsAuthenticated) { this ...

Go to the complete details ...