Navigating the links slow.

  • Thread starter Thread starter None
  • Start date Start date
N

None

Hi,

I have more Html Anchor tag links in many aspx pages.
Ex: <a href="http://localhost/test/Help.aspx"> Help</a>
in test.aspx

My Problem is when i click the anchor tag link it takes around 10
sec to redirect to Help.aspx page. But the Help.aspx page load takes
only 1 sec from init to dispose. The Help.aspx is a static page only.

My Question is why the link takes this much of time to redirect to
another page eventhough the redirected page takes only 1-2 sec to load
entire life cycle.

If anybody knows the solution please let me know it.



Thanks and Regards,
Vinothkumar B
(e-mail address removed)
 
1 sec from init to dispose is quite long (did you use trace?) i quess this
page is not as static as you may think and viewstate is huge (kave a look at
the viewstae of the generated page)

hope this helps
 
Back
Top