Timer aTimer = new Timer();
// Hook up the Elapsed event for the timer.
aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
// Set the Interval to 5 seconds (5000 milliseconds).
aTimer.Interval = 5000;
aTimer.Enabled = true;
void OnTimedEvent(object source, ElapsedEventArgs e)
{
// Todo:: 할일...
}
'Programming > ASP .NET' 카테고리의 다른 글
파일 이름 검색, 변경 및 삭제 (0) | 2007.02.22 |
---|---|
MSSQL 2005에 필드 암호화 하기 (0) | 2007.02.20 |
Master Page 사용하기 (0) | 2007.02.07 |
.net framework 2.x 를 깔았는데도 IIS의 웹서비스 확장 속성에 ASP .NET v2.x 가 나오지 않을 때!! (0) | 2007.02.01 |
c#에서 배열을 참조로 넘기기 (0) | 2007.01.23 |