Description
|
I am accessing a host screen which is a multi-page list.
For each item in the list, I would like to open a second
host connection from the same lu group while preserving the
state of the original connection. After processing a different transaction over the second connection, I would like to close that connection and continue processing the list on the first connection. Is this possible?
The following script segment may clarify:
<TEACTION ENTER
"[Clear]NBAG "+web.HiddenAgent+"[Enter]" skipcode>
<TABLE BORDER=1>
<TBODY>
<TELOOP NAME=Page FIRST=1 LAST=99>
<TELOOP NAME=Row FIRST=5 LAST=24>
<TEIF Screen(Row, 10, 1)==" ">
<TEBREAK>
</teif>
<TR>
<TD>
<A HREF="<TEMACRO TRANURL 'nwl/getpending?SessionKey=<TEMACRO
SESSIONKEY>&Ticks=<TEMACRO CLOCKTICKS>&PendingNumber='+
Screen(Row, 10, 10)+
'&HiddenAgent='+
web.HiddenAgent>">
<TESHOW Sc
|