Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am building an Asp.net 4.0 Web Form Website. It uses a master page, which is used by all my pages. I have a very simple navigation:

  • <a runat="server" href="~/" class="active">Home

  • <a runat="server" href="~/Services.aspx" class="active">Receivership Services

  • <a runat="server" href="~/Secure-Protect.aspx">Secure and Protect

  • <a runat="server" href="~/Properties.aspx">Properties

  • <a runat="server" href="~/OurTeam.aspx">Our Professional Team

  • <a runat="server" href="~/About.aspx" class="active">About Us

  • <a runat="server" href="~/Contact.aspx">Contact Us


When a visitor clicks a navigation link, the proper page loads with out any flicker. HOWEVER, if I move my pages into separate folders, each page will flicker. There is a moment of WHITE just before the page loads.

Any suggestions?

Thanks,
John
Posted

1 solution

<a href="NewFolder1/Control.aspx">Home;


Mention the folder name with the file.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900