PHP
<? <Br/> header ("Location: http://www.phome.net"); <br/>?>
HTML to go to other pages
Add between <Meta http-equiv = "refresh" content = "0; url =...">You can.
The value after content is the refresh time. 0 indicates refreshing immediately. 3: Refresh after three seconds. The URL value is the link to the page you want to jump.
Or
<Body onload = "parent. Location = '...'">
The selection box pops up in JavaScript to jump to other pages
<MCE: script language = "JavaScript"> <! -- <Br/> function logout () {<br/> If (confirm ("are you sure you want to deregister the identity? /N yes-Select OK, no-select cancel ") {<br/> window. location. href = "..... "<br/>}< br/> // --> </MCE: SCRIPT>
A prompt box pops up in JavaScript to jump to other pages.
<MCE: script language = "JavaScript"> <! -- <Br/> function logout () {<br/> alert ("are you sure you want to log out of your identity? "); <Br/> window. location. href = "...... "<br/>}< br/> // --> </MCE: SCRIPT> <br/>
Directly jump to other pages in ASP
<% <Br/> response. Redirect "......" <br/> %>