Advertisement
l-kikov

MVC REdirect

Feb 10th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.76 KB | None | 0 0
  1.         <div id="redirect" class="alert alert-success  text-center" runat="server" Visible="False">
  2.             След  <span id="time-span"></span> секунди ще бъдете пренасочени към Вход.
  3.         </div>
  4.     </form>
  5.  
  6.    
  7.    
  8.   <%--   <script>
  9.          $(document).ready(function () {
  10.              var counter = 10;
  11.              var interval = setInterval(function () {
  12.                  counter--;
  13.                  console.log(counter);
  14.                  // Display 'counter' wherever you want to display it.
  15.                  $("#time-span").html("" + counter);
  16.                  if (counter == 0) {
  17.                      window.location.href = "../Home";
  18.                  }
  19.              }, 1000);
  20.          });
  21.     </script>--%>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement