Page 1 of 1

Redirect new users to MyAccount.aspx

Posted: Sat Jan 16, 2010 8:09 am
by FmaAlbee
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

Re: Redirect new users to MyAccount.aspx

Posted: Mon Jan 18, 2010 6:04 am
by mazhar
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" />

Re: Redirect new users to MyAccount.aspx

Posted: Mon Jan 18, 2010 7:07 am
by FmaAlbee
Perfect Thanks!