码迷,mamicode.com
首页 > Web开发 > 详细

asp.net 在新的页面打开的问题。

时间:2017-05-02 13:50:07      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:oca   否则   location   ring   mod   ++   list   for   htm   

在自己写的代码中,有些页面需要在新的页面中打开,基于页面的数据十分繁琐,一直没有找到方法。通过自己不断的测试,找到了一个方法。 后台页面中 for (int j = 0; j < listModelview_tabSongHuoList.Count;j++ ) { htmlTabListPiaoJu = htmlTabListPiaoJu + @" 子批号" + listModelview_tabSongHuoList[j].OtherOne.ToString() + @" 送货数量 " + listModelview_tabSongHuoList[j].BenCiShuLiang + "

" + "\n"; } htmlTabListPiaoJu = htmlTabListPiaoJu + @" " +"\n"; 在前台页面中的实现方法为 window.open("../SongHuoList/SongHuoListDowLoadS.aspx?RefIDDengDan="+ RefIDDingDan + "&PiHaoDetail=" + PiHaoDetail + "&OtherOne=" + OtherOne + "&SongHuoPiHaoSerialID=" + SongHuoPiHaoSerialID); } function XianPinPiao(OtherOne, PiHaoDetail,SongHuoPiHaoSerialID, RefIDDengDan) { window.open("../SongHuoList/XianPinPiao.aspx?RefIDDengDan=" + RefIDDengDan + "&PiHaoDetail=" + PiHaoDetail + "&OtherOne=" + OtherOne + "&SongHuoPiHaoSerialID=" + SongHuoPiHaoSerialID); } 通过以上的代码和注释发现,用的是window.open("");不是以前用的window.location.href=""; 通过window.open("") 可以实现在新的页面中打开,而且是在前面。否则就会在后面出现,用户体验差。

asp.net 在新的页面打开的问题。

标签:oca   否则   location   ring   mod   ++   list   for   htm   

原文地址:http://www.cnblogs.com/ttym88m/p/6795326.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!