第一个:
Response.Write("<script language=javascript>");
Response.Write("window.open('CaseAbout_Storage.aspx','windows1')");
Response.Write("</script>");第二个:
Response.Write("<script language=javascript>");
Response.Write("window.open('CaseAbout_Storage.aspx','windows2')");
Response.Write("</script>");用不同的名字打开窗口

解决方案 »

  1.   

    oNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an a element._blank The sURL is loaded into a new, unnamed window. _media   The sURL is loaded into the HTML content area of the Media Bar. Available in Internet Explorer 6 or later. _parent The sURL is loaded into the current frame's parent. If the frame has no parent, this value acts as the value _self. _search Available in Internet Explorer 5 and later. The sURL is opened in the browser's search pane. _self The current document is replaced with the specified sURL . _top sURL replaces any framesets that may be loaded. If there are no framesets defined, this value acts as the value _self. 
      

  2.   

    谢谢 timmy3310我的三个页面的名字都不相同,但是在弹出页面再想弹出一个页面的时候,好像第二个页面不是弹出的,就像通过超连接打开的
      

  3.   

    问题的却像timmy3310  所说.谢谢 wolve()