C#按钮点击打开许多窗口
本文关键字:许多 窗口 按钮 | 更新日期: 2023-09-27 18:22:18
我怎么能在ASP.NET(C#)中只做一个按钮clic,我可以打开多个窗口?
<dx:ASPxButton ID="ASPxButton_PrintLetrVoit" runat="server" Text="Impression lettre de voiture" AutoPostBack="False">
<ClientSideEvents
Click="function (s, e) { e.processOnServer = false; window.open('PrintLettreVoit.aspx?Id=2'); }" />
</dx:ASPxButton>
如何用clic按钮打开更多窗口?
<dx:ASPxButton ID="ASPxButton_PrintLetrVoit" runat="server" Text="Impression lettre de voiture" AutoPostBack="False">
<ClientSideEvents
Click="function (s, e) { e.processOnServer = false;
var i=0;
for (i=0;i<=5;i++)
window.open('PrintLettreVoit.aspx?Id=i');
}" />
</dx:ASPxButton>
提前谢谢你。
据我所知,您需要在窗口上使用不同的名称。所以测试一下:
window.open("http://www.google.se", "google");
window.open("http://msdn.microsoft.com/sv-se/", "msdn");
或者在您的情况下:
window.open('PrintLettreVoit.aspx?Id=3','ID3');
window.open('PrintLettreVoit.aspx?Id=7','ID7');