|
Technical Interview Questions
Visual Basic Interview Question
.NET Web Interview Questions
.NET
Interview Questions
C#
Interview Questions
.........More
Source Codes
Asp .NET Source Codes
Asp VB Script Source Codes
.........More
Soft Skills
Communication Skills
Leadership Skills
.........More
|
|
Asp/VB Script Source Codes
Set Alaram
<html>
<head>
<title>Alarm Call Script</title>
<script language="JavaScript">
<!--
var alarmId;
function alarmFunc() {
// Sound the alarm call. You could play a sound here
// as well, by using location=soundfile, etc.
alert("ALARM CALL!");
}
function startTimeout(id) {
var minutes = prompt("How many minutes?", 0);
// Time-outs are measured in milliseconds, so if the
// user enters 1 minute, we need to multiply by 60000.
alarmId = setTimeout("alarmFunc()", minutes*60000);
}
//-->
</script>
</head>
<body>
<form>
<input type=button
value="Start"
onClick="startTimeout()">
<input type=button value="Cancel"
onClick="clearTimeout(alarmId)">
</form>
</body>
</html>
<<<----- Return to
Asp/VB Script Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Microsoft .Net Interview Questions
for more Microsoft
.Net Interview Questions with Answers.
Check
.Net Database Interview
Questions for more .Net Database Interview Questions with answers
Check
Job Interview Questions
for more Interview Questions with Answers
|