Friday, February 13, 2015

automatically redirect in 5sec

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="redirect.aspx.cs" Inherits="redirect" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
   <title>JavaScript redirect to another page after 5 seconds or Sometime</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript">
    var i = 0;
    $(document).ready(function () {
        ShowCurrentTime();
    })
    function ShowCurrentTime() {
        var dt = new Date();
        document.getElementById("lblTime").innerHTML = 5 - i + " Seconds";
        i++;
        if (i == 5) {
            setTimeout("location.href='http://www.gmail.com'", 0);
        }
        window.setTimeout("ShowCurrentTime()", 1000);
    }
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
This Page will Redirected to Another Page within:
<label id="lblTime" style=" font-weight:bold; font-size:12pt"></label>
</div>
</form>
</body>
</html>

No comments:

Post a Comment