Click here to Skip to main content
15,893,381 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Creating the Modal popup fade out effect Pin
Abhishek Sur24-Nov-09 0:51
professionalAbhishek Sur24-Nov-09 0:51 
GeneralRe: Creating the Modal popup fade out effect Pin
Dangermouse50024-Nov-09 1:11
Dangermouse50024-Nov-09 1:11 
GeneralRe: Creating the Modal popup fade out effect Pin
Abhishek Sur24-Nov-09 3:34
professionalAbhishek Sur24-Nov-09 3:34 
GeneralRe: Creating the Modal popup fade out effect Pin
Dangermouse50024-Nov-09 3:37
Dangermouse50024-Nov-09 3:37 
GeneralRe: Creating the Modal popup fade out effect Pin
Abhishek Sur24-Nov-09 21:37
professionalAbhishek Sur24-Nov-09 21:37 
AnswerRe: Creating the Modal popup fade out effect Pin
dan!sh 24-Nov-09 3:16
professional dan!sh 24-Nov-09 3:16 
GeneralRe: Creating the Modal popup fade out effect Pin
Dangermouse50024-Nov-09 3:22
Dangermouse50024-Nov-09 3:22 
QuestionEquivalent to Time control in web forms Pin
Dangermouse50023-Nov-09 23:39
Dangermouse50023-Nov-09 23:39 
Hi, I have used the following code successfully on a windows form to create a timed event where a label is displayed to the user, then the event fires for 5 seconds and the label is then updated. Here is the code:

private void button1_Click(object sender, EventArgs e)
{
label1.Text = "Please wait...";

System.Timers.Timer timer = new System.Timers.Timer();
timer.Interval = 5000;
timer.Elapsed += delegate
{
label1.BeginInvoke((MethodInvoker)delegate
{
label1.Text = "Done";
});
timer.Stop();
};
timer.Start();
}

Is there an equivalent to this in webforms?
Thanks
AnswerRe: Equivalent to Time control in web forms Pin
Shameel24-Nov-09 2:10
professionalShameel24-Nov-09 2:10 
AnswerRe: Equivalent to Time control in web forms Pin
Abhishek Sur24-Nov-09 2:10
professionalAbhishek Sur24-Nov-09 2:10 
GeneralRe: Equivalent to Time control in web forms Pin
Dangermouse50024-Nov-09 3:10
Dangermouse50024-Nov-09 3:10 
Questionaccess remote database data Pin
S.Aijaz23-Nov-09 22:28
S.Aijaz23-Nov-09 22:28 
AnswerRe: access remote database data Pin
Abhijit Jana23-Nov-09 22:38
professionalAbhijit Jana23-Nov-09 22:38 
AnswerRe: access remote database data Pin
Abhishek Sur24-Nov-09 0:49
professionalAbhishek Sur24-Nov-09 0:49 
Questiondownloading file Pin
sahoo.fm23-Nov-09 20:57
sahoo.fm23-Nov-09 20:57 
AnswerRe: downloading file Pin
Abhishek Sur23-Nov-09 21:32
professionalAbhishek Sur23-Nov-09 21:32 
GeneralRe: downloading file Pin
Abhijit Jana23-Nov-09 22:18
professionalAbhijit Jana23-Nov-09 22:18 
GeneralRe: downloading file Pin
Abhishek Sur24-Nov-09 0:46
professionalAbhishek Sur24-Nov-09 0:46 
AnswerRe: downloading file Pin
sashidhar23-Nov-09 21:39
sashidhar23-Nov-09 21:39 
QuestionRemote Procedure Call vs Web Services Pin
shubhabratam23-Nov-09 20:05
shubhabratam23-Nov-09 20:05 
AnswerRe: Remote Procedure Call vs Web Services Pin
Abhishek Sur23-Nov-09 21:43
professionalAbhishek Sur23-Nov-09 21:43 
AnswerRe: Remote Procedure Call vs Web Services Pin
Paulo Zemek24-Nov-09 1:13
mvaPaulo Zemek24-Nov-09 1:13 
QuestionGeting Error On Uploding in FTP Pin
Any_India23-Nov-09 19:49
Any_India23-Nov-09 19:49 
AnswerRe: Geting Error On Uploding in FTP Pin
saini arun23-Nov-09 19:53
saini arun23-Nov-09 19:53 
GeneralRe: Geting Error On Uploding in FTP Pin
Any_India23-Nov-09 20:14
Any_India23-Nov-09 20:14 

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.