Rank: Member
Joined: 6/1/2004(UTC) Posts: 720
|
I have a landing page on the site launch.html after which the customer enters into the store. I have the site's homepage in admin--->general set to use /default.aspx but when you sign out of admin or click anything that is supposed to direct to the default page....it goes to the site's (not the stores) default page of launch.html .
Any idea why this would be ?
Thanks, Derek |
|
|
|
|
Rank: Member
Joined: 6/1/2004(UTC) Posts: 720
|
Seems no matter what you input as the sites home page, it disregards it. Any suggestion as to where this could be re-coded?
Thanks, Derek |
|
|
|
|
Rank: Member
Joined: 11/25/2003(UTC) Posts: 370
|
Derek, give this a try. Not tested so backup files.. Open /logout.aspx.vb in test editor Towards bottom of code look for Code:Response.Redirect(url) Change it to Code:Response.Redirect(url & WebAppSettings.DefaultHomePage) Then look for Code:Response.Redirect(WebAppSettings.SiteStandardRoot) Change it to Code:Response.Redirect(WebAppSettings.SiteStandardRoot & WebAppSettings.DefaultHomePage) That takes care of the logout.
Next open BVAdmin/Header.ascx Look for Code:<asp:HyperLink EnableViewState="false" NavigateUrl="~/" runat="server" ID="lnkGoToStore">Go To Store</asp:HyperLink> change to Code:<asp:HyperLink EnableViewState="false" NavigateUrl="~/default.aspx" runat="server" ID="lnkGoToStore">Go To Store</asp:HyperLink> |
|
|
|
|
Rank: Member
Joined: 6/1/2004(UTC) Posts: 720
|
Excellent....Kim! Thanks I will give it a shot and let you know.
Thanks, d. |
|
|
|
|
Rank: Member
Joined: 6/1/2004(UTC) Posts: 720
|
Thanks Kim, They both worked perfectly....the only slightly odd thing when logging out is that it stuck in an extra "/" http://www.yourticketzone.com//Default.aspx....but yet it still worked : ) Thanks, d. |
|
|
|
|
Forum Jump
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.