Hello,
I have a user on what we will call PageA.aspx. This user needs to get to PageB.aspx. The obvious way is have a hyperlink that simply sends them to PageB.aspx. That got me thinking about the other ways to get between pages. One could use javascript to do a client side jump. There is also the seemingly bulky server side redirection.
What I would like to know is what, if any, are the performance hits between these different methods. I am going to assume the server side is a bit more heavy weight but by how much? Do these methods scale differently? Are there any hidden issues with doing it one way versus another?
Thanks!