Click here to Skip to main content
15,884,836 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralUser Control Interaction Pin
#realJSOP17-Apr-08 11:15
mve#realJSOP17-Apr-08 11:15 
GeneralRe: User Control Interaction Pin
Christian Graus17-Apr-08 14:19
protectorChristian Graus17-Apr-08 14:19 
Question.ASP web service or WCF connecting to a Sun solaris DB server Pin
Steve Holdorf17-Apr-08 10:53
Steve Holdorf17-Apr-08 10:53 
GeneralRe: .ASP web service or WCF connecting to a Sun solaris DB server Pin
Vasudevan Deepak Kumar17-Apr-08 22:31
Vasudevan Deepak Kumar17-Apr-08 22:31 
QuestionVerify idle time? Pin
yibiBrown17-Apr-08 9:11
yibiBrown17-Apr-08 9:11 
AnswerRe: Verify idle time? Pin
led mike17-Apr-08 10:10
led mike17-Apr-08 10:10 
GeneralRe: Verify idle time? Pin
yibiBrown18-Apr-08 4:42
yibiBrown18-Apr-08 4:42 
GeneralRe: Verify idle time? Pin
led mike18-Apr-08 5:43
led mike18-Apr-08 5:43 
In case you are interested I had no idea how do this. I found all the information using Google.
function initializePage()
{
    document.onkeydown = function()
    { SetupTimer(); }
    document.onmousemove = function()
    { SetupTimer(); }
    
    SetupTimer();
}

var activityTimer = null;

function SetupTimer()
{
    if(null != activityTimer) clearTimeout(activityTimer);
    activityTimer = setTimeout("alert('Timed out')", 5000);
}



led mike

AnswerRe: Verify idle time? Pin
Amit Agarrwal17-Apr-08 19:00
Amit Agarrwal17-Apr-08 19:00 
General.NET TRANSACTION Pin
AumSingh17-Apr-08 6:35
professionalAumSingh17-Apr-08 6:35 
GeneralRe: .NET TRANSACTION Pin
led mike17-Apr-08 7:54
led mike17-Apr-08 7:54 
GeneralRe: .NET TRANSACTION Pin
Christian Graus17-Apr-08 14:26
protectorChristian Graus17-Apr-08 14:26 
GeneralRe: .NET TRANSACTION Pin
AumSingh17-Apr-08 22:17
professionalAumSingh17-Apr-08 22:17 
GeneralHooking the output of user controls Pin
Christopher Duncan17-Apr-08 3:59
Christopher Duncan17-Apr-08 3:59 
GeneralProblem with Basic ASP.NET Pin
Vimalsoft(Pty) Ltd17-Apr-08 3:38
professionalVimalsoft(Pty) Ltd17-Apr-08 3:38 
GeneralRe: Problem with Basic ASP.NET Pin
Herman<T>.Instance17-Apr-08 3:55
Herman<T>.Instance17-Apr-08 3:55 
GeneralRe: Problem with Basic ASP.NET Pin
Vimalsoft(Pty) Ltd17-Apr-08 4:00
professionalVimalsoft(Pty) Ltd17-Apr-08 4:00 
GeneralRe: Problem with Basic ASP.NET Pin
Herman<T>.Instance17-Apr-08 4:08
Herman<T>.Instance17-Apr-08 4:08 
GeneralRe: Problem with Basic ASP.NET Pin
Vimalsoft(Pty) Ltd17-Apr-08 20:02
professionalVimalsoft(Pty) Ltd17-Apr-08 20:02 
GeneralRe: Problem with Basic ASP.NET Pin
Herman<T>.Instance17-Apr-08 20:27
Herman<T>.Instance17-Apr-08 20:27 
GeneralRe: Problem with Basic ASP.NET Pin
Vimalsoft(Pty) Ltd17-Apr-08 21:20
professionalVimalsoft(Pty) Ltd17-Apr-08 21:20 
GeneralRe: Problem with Basic ASP.NET Pin
Herman<T>.Instance17-Apr-08 23:19
Herman<T>.Instance17-Apr-08 23:19 
GeneralRe: Problem with Basic ASP.NET Pin
Vimalsoft(Pty) Ltd18-Apr-08 3:10
professionalVimalsoft(Pty) Ltd18-Apr-08 3:10 
GeneralRe: Problem with Basic ASP.NET Pin
Christian Graus17-Apr-08 14:33
protectorChristian Graus17-Apr-08 14:33 
GeneralQuestion Pin
nithydurai17-Apr-08 3:04
nithydurai17-Apr-08 3:04 

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.