0
通過設置LinkButton上的PostBackUrl屬性發布並重定向到第三方。使用LinkButton PostbackUrl - 需要打開新窗口/選項卡
我的問題是,我想要在新選項卡中打開它,但是target =「_ blank」在這裏不做任何事情。
<asp:LinkButton ID="hlApplication" runat="server" Text="Start your application" aria-describedby="information" target="_blank" OnClientClick="this.disabled=true;" UseSubmitBehavior="false"/>
hlApplication.PostbackUrl ="http://externalurl";
任何想法我可以做到這一點?
但是,這將做一個HttpGet。我需要做一個帖子.. –
@SteveWard檢查此[鏈接](http://%20http://stackoverflow.com/questions/2637087/link-button-property-to-open-in-new-tab) –