how do to pass dialogbox(retry) when refresh of the webpage

A

Anonymous

Guest
hi all,

The form was submitted to the action page from the main page. In the action page , i written statement code by javascript redirect to the main page. The result was one dialog opened (the dialogbox including two buttons: retry and cancel). I don't want this dialogbox here show.

What is the solution at here ?

Plz explain me.

Thanks in advance,

Rgds,
 
There's nothing you can do about that. That's always happen when data is posted.
You're probably using the "back" feature. Try some: document.location.replace('destination_url');
 
No, i'm using:
Code:
echo "<script language='javascript'>
            window.location = 'main.php';
        </script>";
exit();
 
Back
Top