I'm working on a project where I have 2 iframes displaying different urls. I need to take the first iframe and have that page cycle through 3 or 4 different URLs every 60 seconds. So, for example, it would show http://stackoverflow.com in the iframe for 60 seconds, then it would show http://google.com for 60 seconds, then another site and so on. Below is the code for my split iframe page:
<%@ Page Title="ALM Dashboard View" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="dashboard.aspx.cs" Inherits="WebApplication1.bookings" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
# This is the frame I need to cycle through multiple sites
<iframe src="https://site1" width="50%" height="1200">
<p>
Your browser does not support Iframes</p>
</iframe>
# This is the static frame
<iframe src="http://site2" width="49%" height="1200">
<p>
Your browser does not support Iframes</p>
</iframe>
</asp:Content>
How can I one frame to cycle through different urls every 60 seconds?