I have a web application with a start page consisting of different links. I used the LinkButton control for System.Web.UI.WebControls for these links. I process the postback a bit, then redirect to the appropriate page. The problem that I find is that in IE7 I cannot right-click on the link and open it in a new tab. Sending occurs, and a new page appears, but on the current tab is not new! I also tried the web application in chrome, and chrome does not even give this parameter when clicking a link directly.
It seems that if the destination page can be opened in a new tab by the user, I need to use a hyperlink or a hyperlink. However, it would be nice if I still had the opportunity to do some processing before going to this link.
source
share