Page 1 of 1

Log in / out buttons

Posted: Wed Apr 22, 2009 4:42 am
by Rich915
Hi

I've created a site using ablecommerce and added a log in button (simply a static button within every content section of the site linking to the login.aspx page). I was wondering how to change this to a 'log out' button when the user is logged in? You can probably tell i'm fairly amateur at this but any help would be greatly appreciated, complicated or not.

Thanks
Rich

Re: Log in / out buttons

Posted: Wed Apr 22, 2009 5:07 am
by mazhar
In scriptlet you can use following NVeclocity code to check user

Code: Select all

#if($customer.IsAnonymous)
					Login
				#else
					Logout
				#end

Re: Log in / out buttons

Posted: Wed Apr 22, 2009 6:58 am
by Rich915
brilliant, it works. thanks!