-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathsample2.html
More file actions
55 lines (50 loc) · 1.51 KB
/
sample2.html
File metadata and controls
55 lines (50 loc) · 1.51 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
@{
var weekday = DateTime.Now.DayOfWeek;
// As a test, add 1 day to the current weekday.
if(weekday.ToString() != "Saturday") {
// If weekday is not Saturday, simply add one day.
weekday = weekday + 1;
}
else {
// If weekday is Saturday, reset the day to 0, or Sunday.
weekday = 0;
}
// Convert weekday to a string value for the switch statement.
var weekdayText = weekday.ToString();
var greeting = "";
switch(weekdayText)
{
case "Monday":
greeting = "Ok, it's a marvelous Monday.";
break;
case "Tuesday":
greeting = "It's a tremendous Tuesday.";
break;
case "Wednesday":
greeting = "Wild Wednesday is here!";
break;
case "Thursday":
greeting = "All right, it's thrifty Thursday.";
break;
case "Friday":
greeting = "It's finally Friday!";
break;
case "Saturday":
greeting = "Another slow Saturday is here.";
break;
case "Sunday":
greeting = "The best day of all: serene Sunday.";
break;
default:
break;
}
}
<h2>@greeting</h2>
</body>
</html>