I have a web app with a start page composed of various links. I used the LinkButton control of System.Web.UI.WebControls for these links. I do a little bit of processing on postback, then I redirect to the appropriate page. The problem I find is that in IE7 I cannot right click the "link" and open in a new tab. The postback occurs and the new page appears, but in the current tab, not a new one! I tried the web app in chrome as well, and chrome doesn't even give the option when right clicking the link.
It appears that if the destination page might need to be opened in a new tab by the user, I need to use a hyperlink or the hyperlink control. However, it would be nice if I still had the option to do some processing before jumping to that link.