:salam:
Announcement
Collapse
No announcement yet.
Unconfigured Ad Widget
Collapse
ASP how it works
Collapse
X
-
Re: ASP how it works
<% language=vbscript %>
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Many code in asp pages</title>
</head>
<body>
<b>The Current Time is <%=Time() %> </b>
<p>
<b>
<%
if DatePart ("h",Time() ) >= 12 then
%>
<%
' it is after noon %>
<%
Response.write "Good Morning !"
%>
<% Else %>
<% 'It is Befor Noon ! %>
<% Response.write "Good AfterNoon" %>
<% End if %> </b>
</body>
</html>
Comment