Hi,
I have a link button and want to open a page in a new tab on its click.
Also i have parameters to pass in the new page URL.
this is my likbutton:
<asp:LinkButton ID="lnkProcessing" runat="server" OnClick="lnkProcessing_Click">Process</asp:LinkButton>
this should be the new tab opened
Response.Redirect("~/OrderLogistics.aspx?orderId=" + lblOrderId.Text + "&OrderNo=" + orders.OrderNo);
Thanks in advance