Timed Refresh:
1, <SCRIPT> setTimeout ("location. href = 'url'", 2000) </SCRIPT>
Note: The URL is the URL of the page to be refreshed.
2000 is the waiting time = 2 seconds,
2, <meta name = "refresh" content = "N; URL">
Note:
N is the number of seconds to wait before loading the specified URL.
URL is an absolute URL to be loaded.
N is the waiting time, in seconds.
URL is the URL of the page to be refreshed
3, <% response. Redirect URL %>
Note: Generally, you can use a URL parameter or form value to determine whether an operation has occurred, and then use response. Redirect to refresh the operation.
4. Refresh the framework page
<Script language = JavaScript> top. leftfrm. Location. Reload (); parent. frmtop. Location. Reload (); </SCRIPT> regular Refresh:
1, <SCRIPT> setTimeout ("location. href = 'url'", 2000) </SCRIPT>
Note: The URL is the URL of the page to be refreshed.
2000 is the waiting time = 2 seconds,
2, <meta name = "refresh" content = "N; URL">
Note:
N is the number of seconds to wait before loading the specified URL.
URL is an absolute URL to be loaded.
N is the waiting time, in seconds.
URL is the URL of the page to be refreshed
3, <% response. Redirect URL %>
Note: Generally, you can use a URL parameter or form value to determine whether an operation has occurred, and then use response. Redirect to refresh the operation.
4. Refresh the framework page
<Script language = JavaScript> top. leftfrm. Location. Reload (); parent. frmtop. Location. Reload (); </SCRIPT>