|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于中小型web应用来说,php有很强的竞争力,linux+apache+mysql+php(lamp)的组合几乎可以胜任绝大多数网站的解决方案,对于大型应用来讲,对于系统架构要求更高,需要有成熟的框架支持,jsp的struts是个不错的框架,国内介绍它的资料也非常多,应用逐渐广泛起来。asp就不用说了,日历|日历日曜日礼拜一礼拜二礼拜三木曜日礼拜五礼拜六12345678910111213141516171819202122232425262728293031源码:<%@Language=VBScript%>
<Html>
<Title>
小日历
</title>
<body>
<%
FunctionCountDays(iMonth,iYear)
SelectCaseiMonth
case1,3,5,7,8,10,12
CountDays=31
case2
ifIsDate("2/29/"&iYear)Then
CountDays=29
else
CountDays=28
endif
case4,6,9,11
CountDays=30
EndSelect
EndFunction
FunctionFirstDay(iMonth,iYear)
FirstDay=WeekDay(iMonth&"/1/"&iYear)
EndFunction
dimmMonth,mYear
mMonth=Month(Date())
mYear=Year(Date())
mDate=Day(Date())
response.write"<center>"&mYear&"年"&mMonth&"月"&"</center><hr>"
%>
<tableborder=1align=center><tr>
<tdalign=right>日曜日</td>
<tdalign=right>礼拜一</td>
<tdalign=right>礼拜二</td>
<tdalign=right>礼拜三</td>
<tdalign=right>木曜日</td>
<tdalign=right>礼拜五</td>
<tdalign=right>礼拜六</td>
</tr><tr>
<%
j=1
fori=1to42
response.write"<tdalign=right>"
ifi>=FirstDay(mMonth,mYear)andj<=CountDays(mMonth,mYear)then
ifmDate=jthen
response.write"<fontcolor=blue>"&j&"</font>"
else
response.writej
endif
j=j+1
else
response.write""
endif
response.write"</td>"
ifimod7=0then
response.write"</tr><tr>"
endif
next
%>
</tr></table>
</body>
</html>
因为下吧进修频道扫瞄页面为html页面,因而没法演示一般的asp代码效果。下面给出的演示,为代码经由过程iis注释后的一种情形。用户能够经由过程代码复制,自行测试效果。
</p>想法是和程序员的想法不一样的.至于为什么.大家去想一想.跟心理学有关的 |
|