| Article: |
Managing ASP.NET Navigation | |
| Subject: | What different between window.open and hyperlink ? Which is good performance | |
| Date: | 2003-04-13 16:34:45 | |
| From: | anonymous2 | |
Showing messages 1 through 1 of 1.
-
What different between window.open and hyperlink ? Which is good performance
2003-04-14 14:45:06 prosser [View]



Although there are times when a window.open should be used, most times it is simpler just to use a normal hyperlink. Exceptions are when you need to navigate via timed event, selection in a dropdown, etc. Keep in mind that if you do an automatic redirection when the user isn't expecting to be redirected that's a bad thing in most cases. Users just hate unpredictable (to them) interfaces.
Just my $0.02...