'--------------------------------------------------------------------------- ' ' SendNoOp() - Tell browser to do nothing. ' ' Most browsers will do nothing. Netscape 1.0N leaves hourglass ' cursor until the mouse is waved around. Enhanced Mosaic 2.0 ' oputs up an alert saying "URL leads nowhere". Your results may ' vary... ' '--------------------------------------------------------------------------- Sub SendNoOp() Send ("HTTP/1.0 204 No Response") Send ("Server: " + CGI_ServerSoftware) Send ("") End Sub