- How to navigate to a different page with JavaScript
- Response.Redirect("somepage.aspx");
- <script language="JavaScript">
- <!--
- function move() {
- window.location = 'http://www.yourdomain.com'
- }
- //-->
- </script>
- function goURL() {
- location.href="http://example.com" // change url to your's
- }