Redirect new users to MyAccount.aspx

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
FmaAlbee
Lieutenant (LT)
Lieutenant (LT)
Posts: 51
Joined: Fri Sep 12, 2008 2:12 pm

Redirect new users to MyAccount.aspx

Post by FmaAlbee » Sat Jan 16, 2010 8:09 am

Where do I modify the redirect page for new users after they are successfully logged in. I need them to go to MyAccount.aspx rather than the store default.aspx

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Redirect new users to MyAccount.aspx

Post by mazhar » Mon Jan 18, 2010 6:04 am

You can change your application's default page after login in your web.config. Edit your web.config file and locate following code

Code: Select all

<forms timeout="90" slidingExpiration="true" name="AC7.ASPXAUTH" />
and then update it as below

Code: Select all

<forms timeout="90" slidingExpiration="true" name="AC7.ASPXAUTH" defaultUrl="~/Members/MyAccount.aspx" />

FmaAlbee
Lieutenant (LT)
Lieutenant (LT)
Posts: 51
Joined: Fri Sep 12, 2008 2:12 pm

Re: Redirect new users to MyAccount.aspx

Post by FmaAlbee » Mon Jan 18, 2010 7:07 am

Perfect Thanks!

Post Reply