Solution <!--
Submit data to a fixed-size window page
The reason window's name is assigned later is to improve the efficiency of opening a new page, generally
We want to open a fixed-name window, such as window.open "xxx.asp", "Windowname"
If the client opens more than one IE window, window.open first detects whether the client has a duplicate name for each IE window,
If a duplicate name is submitted directly to the duplicate name form, there is a detection procedure here, so the opening speed will be very slow.
So here is the practice of opening the page first, then assigning the name.
Begin
-->
<form id= "frm_list" name= "frm_list" method= "Post" >
<input type=hidden id= "Hid_record" name= "Hid_record" >
</Form>
<script language=vbscript>
Dim Objwin
With document.all ("Frm_list")
. Item ("Hid_record"). Value = "100"
. Action = "Update.asp"
. Target = "Windowname"
Set objwin = window. Open ("About:blank", "" "," ")
Objwin.name = "Windowname"
. Submit
End With
</Script>
<!--end-->