-
Notifications
You must be signed in to change notification settings - Fork 0
/
asp.html
84 lines (75 loc) · 4.49 KB
/
asp.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ASP</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript">
var host = "www.danealor.com";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#8c2a14">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/dane-styles.css">
<link rel="stylesheet" href="css/stylesheet.css">
<link rel="canonical" href="{ { site.url } }{ { page.url } }" />
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<ul class="nav">
<li class="logo"><a href="index.html"><img src="tile-wide.png" /></a></li>
<li><a href="index.html">Home</a></li>
<li><a href="tpgw.html">TPGW</a></li>
<li><a href="ubnl.html">UBNL</a></li>
<li><a href="robot.html">Robot Arm</a></li>
<li><a href="java.html">Java</a></li>
<li class="active"><a href="asp.html">ASP</a></li>
<li><a href="portfolio/index.html">Portfolio</a></li>
<li style="float:right"><a href="about.html">About</a></li>
</ul>
<section class="container-fluid page-header text-center">
<h1 class="project-name">ASP.NET</h1>
<h2 class="project-tagline">Active Server Pages</h2>
</section>
<section class="container">
<h1 class="green">
<a id="C#" class="anchor" href="#c-sharp" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>C#/SQL/HTML/CSS/Javascript
</h1>
<p>In my journeys through web development, I had started with ASP.NET, where a C# server provides HTML content to the client.</p>
<p>This website is hosted with ASP.NET, and is the product of a computer science class in Israel. The theme of this website is diversity, and includes login, sessions, authentication and forums, and even a Flash game. All custom code was written by me. You can find the website at <a href="http://old.danealor.com">old.danealor.com</a></p>
<div class="container">
<div class="thumbnail">
<img src="img/July.PNG" alt="ATE Usage Statistics for July" style="width:100%">
<img src="img/Aug.PNG" alt="ATE Usage Statistics for August" style="width:100%">
<img src="img/2018.PNG" alt="ATE Usage Statistics for 2018" style="width:100%">
<img src="img/Total.PNG" alt="Total ATE Usage Statistics" style="width:100%">
<img src="img/WeeklyYear.PNG" alt="Weekly ATE Usage Statistics for 2018" style="width:100%">
<div class="caption">
<p>Snapshots from the ATE usage database that I automatically analyze and graph in the company website that I developed.</p>
</div>
</div>
</div>
<pre><code>
string s = "C++ is the best!";
s.Replace("++","#");
System.Console.WriteLine(s);
</code></pre>
</section>
<div class="footer-container">
<footer class="wrapper">
<h3>2016 © <a href="https://danealor.com" target="_blank">danealor.com</a> | <a href="https://linkedin.com/in/amit-blonder-963189127" target="_blank">Amit Blonder</a></h3>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>