Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Login page
aline
#1 Posted : Monday, 29 June 2009 6:41:21 AM(UTC)
Rank: Newbie

Joined: 11/06/2009(UTC)
Posts: 2

Is it possible to remove the Login text link and Search link on the login page? The login text link seems to be repetitive in that in brings up the login box again and you can't search unless you're logged in anyway.

Thank you
Roger Martin
#2 Posted : Monday, 29 June 2009 7:15:20 AM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,298
Location: Fort Atkinson, WI

Since you posted this in the dev forum, I assume you are able to edit the source code. If so, you can hide the login and search controls in the page load event of the login page. Open the code behind for the page Website/gs/pages/login.ascx and add a couple lines:

Code:
protected void Page_Load(object sender, EventArgs e)
{
this.GalleryControl.ShowLogin = false;
this.GalleryControl.ShowSearch = false;

... rest of function not shown...
}

Roger Martin
Creator and Lead Developer of Gallery Server Pro
Rss Feed  Atom Feed
Users browsing this topic
Guest
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.