右键单击未打开新选项卡
问题描述:
我在网站上使用了左键单击正常工作的链接按钮。但是,当我右键单击它并选择在新选项卡中打开时,它会打开一个空白页面,其中没有任何内容。任何解决方案?
I have used link buttons in my website which are working properly on left click. But when I right click it and choose open in new tab, it opens a blank page with no content in it. Any solutions?
答
之所以无法正常工作是因为链接按钮需要回发才能重定向到您的网址。
最简单的方法是将链接按钮更改为超链接控件,并将目标属性设置为服务器端页面加载功能中的URL。
The reason why it is not working properly because the link button needs a postback to redirect to your URL.
The simplest way to do is change the link button to a hyperlink control and set the target property to your URL in page load function on server side.