.
.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
function cubeme(incomingnum){
if (incomming == 1) {
return "what are u doin?";
}
else {
return Math.pow(incomingnum, 3);
}
}
</script>
<title>this project cubes a number</title>
</head>
<body>
<script type="text/javascript">
var thenum = 2;
var finalnum = cubeme(thenum);
if (isNaN(finalnum)){
alert("you should know that 1 to any power is 1");
}
else {
alert("when cubed,"+thenum+"is"+finalnum);
}
alert("shit");
</script>
</body>
</html>
when i browse this code,non of the browsers show the alert box!i wanna know whyyyy???
and the other question is that when i use "start without debugging",a kind of website about asp is shown or some times a page titled:HTTP Error 403.14 - Forbidden.... . but no signs of my code debugging!! It's making me crazy.i need helP!