Read this thread but didn\'t really answer my question and there were quite a few suggestions so not sure if they are on the right track: Master Page content filtering with res
In your MasterPage:
protected void Page_Load(object sender, EventArgs e) { var page = HttpContext.Current.Handler as Page; FooterControl.Visible = HttpRequest.IsAuthenticated && !(page is LoginPage) }