Click here to Skip to main content
15,917,060 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: how to maintain session with AccessDataSourceControl in asp.net with C# [modified] Pin
Purish Dwivedi26-Oct-09 20:04
Purish Dwivedi26-Oct-09 20:04 
QuestionWeb deployment project not replacing existing files after 3.5 upgrade Pin
Jordan Marr26-Oct-09 14:12
Jordan Marr26-Oct-09 14:12 
AnswerRe: Web deployment project not replacing existing files after 3.5 upgrade Pin
Oakman26-Oct-09 15:47
Oakman26-Oct-09 15:47 
QuestionDisplaying Image in ASP.NET AJEX Pin
bapu288926-Oct-09 10:03
bapu288926-Oct-09 10:03 
AnswerRe: Displaying Image in ASP.NET AJEX [modified] Pin
Not Active26-Oct-09 10:14
mentorNot Active26-Oct-09 10:14 
QuestionRe: Displaying Image in ASP.NET AJEX Pin
bapu288926-Oct-09 10:51
bapu288926-Oct-09 10:51 
AnswerRe: Displaying Image in ASP.NET AJEX Pin
Christian Graus26-Oct-09 10:58
protectorChristian Graus26-Oct-09 10:58 
AnswerRe: Displaying Image in ASP.NET AJEX Pin
Abhishek Sur26-Oct-09 12:01
professionalAbhishek Sur26-Oct-09 12:01 
A slight modification :

var imageNum = 1;

setInterval("changeImage()", 250);

function changeImage()
{
   if( imageNum >= 16 )
     imageNum = 1;
   
   imageNum = parseInt(imageNum) + 1;
   img.src = "http:\\mysite\" + imageNum + ".png";
}


Use this javascript to your page inside <script> tag.
Thumbs Up | :thumbsup:

Abhishek Sur
Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->

Microsoft Bing MAP using Javascript
CLR objects in SQL Server 2005
Uncommon C# Keywords
/xml>

QuestionRe: Displaying Image in ASP.NET AJEX Pin
bapu288926-Oct-09 12:31
bapu288926-Oct-09 12:31 
AnswerRe: Displaying Image in ASP.NET AJEX Pin
Not Active26-Oct-09 12:37
mentorNot Active26-Oct-09 12:37 
AnswerRe: Displaying Image in ASP.NET AJEX Pin
Christian Graus26-Oct-09 12:39
protectorChristian Graus26-Oct-09 12:39 
GeneralRe: Displaying Image in ASP.NET AJEX Pin
Not Active26-Oct-09 12:47
mentorNot Active26-Oct-09 12:47 
GeneralRe: Displaying Image in ASP.NET AJEX Pin
Not Active26-Oct-09 12:33
mentorNot Active26-Oct-09 12:33 
GeneralRe: Displaying Image in ASP.NET AJEX Pin
5fingers26-Oct-09 18:52
5fingers26-Oct-09 18:52 
GeneralRe: Displaying Image in ASP.NET AJEX Pin
Abhishek Sur26-Oct-09 22:19
professionalAbhishek Sur26-Oct-09 22:19 
GeneralRe: Displaying Image in ASP.NET AJEX Pin
Not Active27-Oct-09 1:58
mentorNot Active27-Oct-09 1:58 
GeneralRe: Displaying Image in ASP.NET AJEX Pin
Abhishek Sur27-Oct-09 7:41
professionalAbhishek Sur27-Oct-09 7:41 
QuestionSql query bulider? Pin
Jollyguy26-Oct-09 5:37
Jollyguy26-Oct-09 5:37 
AnswerRe: Sql query bulider? Pin
Not Active26-Oct-09 5:49
mentorNot Active26-Oct-09 5:49 
QuestionNeed to Bind the GridView for Dynamically Loaded User control In Default Page. Pin
Johndas26-Oct-09 4:41
Johndas26-Oct-09 4:41 
AnswerRe: Need to Bind the GridView for Dynamically Loaded User control In Default Page. Pin
Not Active26-Oct-09 5:06
mentorNot Active26-Oct-09 5:06 
AnswerRe: Need to Bind the GridView for Dynamically Loaded User control In Default Page. Pin
Abhishek Sur26-Oct-09 5:13
professionalAbhishek Sur26-Oct-09 5:13 
GeneralRe: Need to Bind the GridView for Dynamically Loaded User control In Default Page. Pin
Not Active26-Oct-09 5:21
mentorNot Active26-Oct-09 5:21 
GeneralRe: Need to Bind the GridView for Dynamically Loaded User control In Default Page. Pin
Abhishek Sur26-Oct-09 8:52
professionalAbhishek Sur26-Oct-09 8:52 
GeneralRe: Need to Bind the GridView for Dynamically Loaded User control In Default Page. Pin
Not Active26-Oct-09 9:21
mentorNot Active26-Oct-09 9:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.