"dangoble@xxxxxx" wrote:
> As you can see the "Upload Complete..." never shows because the
> program immediately redirects back to the upload page to allow my user
> to upload another pic.
> Please show me how to place a pause of 5 seconds in there so the user
> can see the upload is complete and be returned back to xxx.com in 5
> seconds You *CAN'T* do it in server side code. Period.
You must do it in the browser.
So...
<head>
<script language="javascript">
function goBack( )
{
location.href = "uploadPage.asp"; // or wherever
}
</script>
</head>
<body onLoad="setTimeout( 'goBack( )', 5000 );">
Upload complete...
<p> <p>
<a href="uploadPage.asp">Click here</a> if page doesn't refresh in 5 seconds.
</body>
***********
You could instead use a META-REFRESH, to avoid JavaScript, if you needed.