views:

836

answers:

1

Hello all!

Is there a way to open an asp:HyperLink.NavigationUrl in a new tab and not change location of the current?

+1  A: 

use <asp:HyperLink Target="_blank" /> actually depending on the users settings that may open a new window.

This works for a new tab in FF and Chrome, doesn't seem to work in IE (8), but this may depend on the doctype.

pb
It also works in IE(8)
Shimmy