Thanks for the example Matthew, really saves me a lot of time here so I appreciate it.
bug is fixed in 6.19 (which should go up today.)
If you need to fix in your build there then make the following change to the .MakePage method in the NetWeb.Clw file;
loc:SendString = clip(loc:SendString) & |
clip(loc:header) &|
clip(loc:Page) &|
clip(loc:footer) &|
'<!-- Net:SelectField -->' &|
'<!-- Net:Popup -->' &|
'</div></body><13,10></html><13,10>'
should be
loc:SendString = clip(loc:SendString) & |
clip(loc:header) &|
'<!-- Net:Busy -->' &|
'<!-- Net:Message -->' &|
clip(loc:Page) &|
clip(loc:footer) &|
'<!-- Net:SelectField -->' &|
'<!-- Net:Popup -->' &|
'</div></body><13,10></html><13,10>'
Cheers
Bruce