<%@ Page Language="C#" %>
<html>
<head>
<title>C# Primer: Conditional If Statement</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc -->
<div class="header"><h2>C# Primer: <span class="hilite">Conditional If Statement</span></h2></div>
<hr size=1 width=92%>
<%
// Declare variable of type String.
String strGreeting;
// Declare variable of type DateTime.
DateTime now = DateTime.Now;
// Check for am/pm and output appropriate message.
if ( now.Hour >= 12 ) {
if ( now.Hour >= 18 )
strGreeting = "Good Evening.";
else
strGreeting = "Good Afternoon.";
}
else {
strGreeting = "Good Morning.";
}
%>
<div align="center">
<b>Today is <%= now.ToString ( "f" ) %></b>.
<p><!-- spacer --></p>
<b><%= strGreeting %></b>
</div>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>