Skip to content

Commit 94b8ba4

Browse files
committed
Merge pull request #2 from psk11/files
Removed ASP
2 parents c5cb57b + 0bdef61 commit 94b8ba4

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

factorialFinder.html

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="factorialFinder.aspx.cs" Inherits="factorialFinder" %>
2-
3-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
42

53
<html xmlns="http://www.w3.org/1999/xhtml">
64
<head runat="server">
@@ -24,20 +22,6 @@
2422
document.getElementById("printf").innerHTML = product;
2523
}
2624
}
27-
// var product = 1;
28-
// function rec(n)
29-
// {
30-
// n = parseInt(n);
31-
// if(n <= 1)
32-
// {
33-
// // product = 1;
34-
// }
35-
// else
36-
// {
37-
// product = n * rec(n-1);
38-
// }
39-
// document.getElementById("printf").innerHTML = product;
40-
// }
4125
</script>
4226
</head>
4327
<body>

0 commit comments

Comments
 (0)