I am trying to get a message displayed on the webpage before moving on to the next page. The simplified code is:
<script language = "vbscript">
document.write ("Processing Request"
Function Process
Select Case (parent.ButtonClicked)
Case 0
location.href = "r41.htm"
Case 1
location.href = "r42.htm"
end Select
end Function
</script>
<body bgcolor="#FFFFFF" text="#000000" onload = Process>
The result is that the "Processing Request" text is never displayed and the browser processes for about 10 to 20 seconds (depending upon the request) then displays the second page. No user interaction is wanted. How do I force the "Processing Request" text to be displayed.
Terry
<script language = "vbscript">
document.write ("Processing Request"
Function Process
Select Case (parent.ButtonClicked)
Case 0
location.href = "r41.htm"
Case 1
location.href = "r42.htm"
end Select
end Function
</script>
<body bgcolor="#FFFFFF" text="#000000" onload = Process>
The result is that the "Processing Request" text is never displayed and the browser processes for about 10 to 20 seconds (depending upon the request) then displays the second page. No user interaction is wanted. How do I force the "Processing Request" text to be displayed.
Terry