Click here to Skip to main content
15,900,258 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Gridview asp.net 2005 Pin
Vimalsoft(Pty) Ltd26-Oct-09 20:29
professionalVimalsoft(Pty) Ltd26-Oct-09 20:29 
Question[Message Deleted] Pin
Purish Dwivedi26-Oct-09 18:24
Purish Dwivedi26-Oct-09 18:24 
AnswerRe: how to maintain session with AccessDataSourceControl in asp.net with C# Pin
Rajmendra*Nh26-Oct-09 19:26
Rajmendra*Nh26-Oct-09 19:26 
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 
Really you don't even need AJAX to do this, simple JavaScript will handle this

var imageNum = 1;

setInterval(changeImage, 250);

function changeImage()
{
   if( imageNum >= 16 )
     imageNum = 1;

   img.src = "http:\\mysite\" + imageNum + ".png";
   imageNum++;
}



only two letters away from being an asset

modified on Tuesday, October 27, 2009 7:55 AM

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 
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 

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.