TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
kshama parashar
NA
89
0
image change on timer tick
Jul 3 2010 3:16 AM
hello to all
i want to repeat the all four image on single image on timer tick
my code:
jewel.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!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></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Image ID="ImageButton1" runat="server" ImageUrl="image/1.gif" />
<asp:Timer ID="Timer1" runat="server" Interval="2000" ontick="Timer1_Tick">
</asp:Timer>
</div>
</form>
</body>
</html>
jewel.aspx.cs:
string[] aa = new string[4];
protected void Page_Load(object sender, EventArgs e)
{
aa[0] = "image/1.gif";
aa[1] = "image/2.gif";
aa[2] = "image/3.gif";
aa[3] = "image/4.gif";
}
protected void Timer1_Tick(object sender, EventArgs e)
{
chang();
}
public void chang()
{
for (int i = 0; i <= 3; i++)
{
ImageButton1.ImageUrl = aa[i];
}
}
it showing only first and last image
Reply
Answers (
5
)
What directory should I put the windows drivers in?
How to write data to Excel 2007 using VB.Net?