-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
97 lines (79 loc) · 3.44 KB
/
Default.aspx
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
85
86
87
88
89
90
91
92
93
94
95
96
97
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body style="height: 784px; width: 770px;">
<form id="form1" runat="server">
<div style="height: 38px; margin-left: 80px;">
<asp:Label ID="Dob_msg" runat="server" Font-Bold="True" Font-Italic="True" Font-Underline="True" ForeColor="#0066FF" Text="First, please enter your date of birth"></asp:Label>
:<br />
<br />
<asp:Label ID="Day_lb" runat="server" Text="Day"></asp:Label>
(dd)
<asp:TextBox ID="Dateinput_tb" runat="server" Width="72px"></asp:TextBox>
<asp:Label ID="Month_lb" runat="server" Text="Month"></asp:Label>
(mm)
<asp:TextBox ID="Monthinput_tb" runat="server" Width="75px"></asp:TextBox>
<asp:Label ID="Year_lb" runat="server" Text="Year"></asp:Label>
(yyyy)
<asp:TextBox ID="Yearinput_tb" runat="server" Width="73px"></asp:TextBox>
<asp:Button ID="dobEnter" runat="server" OnClick="dobEnter_Click" Text="Enter" />
<br />
<br />
<br />
<asp:Label ID="Happybirthday_msg" runat="server"></asp:Label>
<br />
<br />
<br />
<asp:Label ID="Welcome_msg" runat="server" Font-Bold="True" Font-Italic="True" Font-Underline="True" ForeColor="#0066FF" Text="Ready to play Rock, Paper, Scissors, Lizard, Spock?"></asp:Label>
<br />
<br />
<asp:RadioButton ID="Rockbutton" runat="server" Text="Rock" GroupName="choicelist" />
<br />
<asp:RadioButton ID="Paperbutton" runat="server" Text="Paper" GroupName="choicelist" />
<br />
<asp:RadioButton ID="Scissorsbutton" runat="server" Text="Scissors" GroupName="choicelist" />
<br />
<asp:RadioButton ID="Lizardbutton" runat="server" Text="Lizard" GroupName="choicelist" />
<br />
<asp:RadioButton ID="Spockbutton" runat="server" Text="Spock" GroupName="choicelist" />
<br />
<br />
<asp:Label ID="Rules_lb" runat="server" ForeColor="Red" Text="Please be aware of the following rules..."></asp:Label>
<br />
<br />
<ul>
<li> Scissors beats paper </li>
<li> Paper beats rock </li>
<li> Rock beats lizard </li>
<li> Lizard beats Spock </li>
<li> Spock beats scissors </li>
<li> Scissors beats lizard </li>
<li> Lizard beats paper </li>
<li> Paper beats Spock </li>
<li> Spock beats rock </li>
<li> Rock beats scissors </li.>
</li>
</ul>
<br />
<br />
<asp:Button ID="playButton" runat="server" Height="29px" OnClick="playButton_Click" Text="Play!" Width="183px" />
<asp:Button ID="playAgainButton" runat="server" Height="29px" OnClick="playAgainbutton_Click" Text="Play Again?" Width="175px" />
<br />
<br />
<asp:Label ID="computerChoice_lb" runat="server"></asp:Label>
<asp:Label ID="result_lb" runat="server"></asp:Label>
<br />
<br />
</div>
<p>
</p>
</form>
</body>
</html>