-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.aspx
More file actions
31 lines (31 loc) · 1.05 KB
/
Copy pathdefault.aspx
File metadata and controls
31 lines (31 loc) · 1.05 KB
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> VS2012</title>
<link rel="stylesheet" href="CSS/myCss.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="Scripts/jsScript.js"></script>
</head>
<body>
<div id="container">
<div class="box0">
<h2>My Local Test page on localHost...</h2>
<button id="myBtn" onclick="click()">Click me!</button>
</div>
<div class="box1">
<p>Some text I want to experiment on later using => via $.</p>
</div>
<div class="box2">
<button id="getText" onclick="GetText()">Get Text</button>
<div id="fromFile"></div>
<textarea id="test" rows="10" cols="15"></textarea>
</div>
<div class="box3">
<p>Today's date is: <%= System.DateTime.Now().ToShortDateString()%></p>
</div>
<span class="stretch"></span>
</div>
<!-- my jQuery reference should be here //in theory// but it will not work as is => find it why -->
</body>
</html>