You can change the target to "_blank"

解决方案 »

  1.   

    how to add my arguments and specific properties for my new window?
      

  2.   

    Also you can add your arguments after response URL which you want to open.Such as 
    var url = "http://www.yourhost.com/yourpage.php?agr1=hello&agr2=world";
      

  3.   

    <form name="formSEARCH" onsubmit="window.open('','newwin','width=200')" target="newwin"
      

  4.   

    <form name="formSEARCH"  target ="_blank" is the most simple way
      

  5.   

    window.open('yourpage','_blank','width=200');
      

  6.   

    <form name="formSEARCH" onsubmit="window.open('','newwin','width=200')" target="newwin">It still have two issues if I excuted as the above method.Firstly, I can open the new window, but my lralSearchToolBar.aspx page only flash a second, then return to the asp home page that the same as the parents window.Secondly, I clicked "back" in the new open window, it went back to my aspx page, but my arguments didn't be transfer from parents page to my .net page correctly. How could I solve this two issues?Thanks a lot!
      

  7.   

    I knew the reason of the first issue.I used window.open open my .aspx page in new window. and then target="newwin" opened asp home page again in my .net window.The asp page may open in itself window if i set target="_top", but the problem is it always refresh the home page.