Hi @Coreysan,
You can try the code below.
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton Text="view1" ID="lnkView1" runat="server" OnClientClick="multiopen1()" />
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton Text="view2" ID="lnkView2" runat="server" OnClientClick="multiopen2()" />
</ItemTemplate>
</asp:TemplateField>
<script type="text/javascript">
function multiopen1() {
window.open('WebForm2.aspx', '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes');
}
function multiopen2() {
window.open('WebForm3.aspx', '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes');
}
</script>
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread