中国IT动力,最新最全的IT技术教程
最新100篇 | 推荐100篇 | 专题100篇 | 排行榜 | 搜索 | 在线API文档 | 网通镜像
首 页 | 程序开发 | 操作系统 | 软件应用 | 图形图象 | 网络应用 | 精文荟萃 | 教育认证 | 硬件维护 | 未整理篇 | 站长教程
ASP JS PHP工程 ASP.NET 网站建设 UML J2EESUN .NET VC VB VFP 网络维护 数据库 DB2 SQL2000 Oracle Mysql
服务器 Win2000 Office C DreamWeaver FireWorks Flash PhotoShop 上网宝典 CorelDraw 协议大全 网络安全 微软认证
硬件维护  CPU  主板  硬盘  内存  显卡  显示器  键盘鼠标  声卡音箱  打印机  机箱电源  BIOS  网卡  C#  Java  Delphi  vs.net2005
  当前位置:> 程序开发 > Web开发 > JSP
用JSP实现的一个日历程序
作者:未知 时间:2002-07-06 10:50 出处:互联网 责编:chinaitpower
              摘要:用JSP实现的一个日历程序

<!-- 显示任意年、月的日历,可选择不同的年、月。author:wildfield --> 
<%@ page language="java" import="java.util.*" %> 
<%! String year; 
  String month; 
%> 
<% month=request.getParameter("month"); 
  year =request.getParameter("year"); 
%> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
<title>日</title> 
<script Language="JavaScript"> 
<!-- 
function changeMonth() 

var mm="calendar.jsp?month="+document.sm.elements[0].selectedIndex+"&year=" 
+<%=year%>; 
window.open(mm,"_self"); 

//--></script> 
</head> 
<%! String days[]; %> 
<% 
days=new String[42]; 
for(int i=0;i<42;i++) 
 { 
  days[i]=""; 
 } 
%> 
<% 
Calendar thisMonth=Calendar.getInstance(); 
 if(month!=null&&(!month.equals("null"))) 
  thisMonth.set(Calendar.MONTH, Integer.parseInt(month) ); 
 if(year!=null&&(!year.equals("null"))) 
  thisMonth.set(Calendar.YEAR, Integer.parseInt(year) ); 
 year=String.valueOf(thisMonth.get(Calendar.YEAR)); 
month=String.valueOf(thisMonth.get(Calendar.MONTH)); 
thisMonth.setFirstDayOfWeek(Calendar.SUNDAY); 
thisMonth.set(Calendar.DAY_OF_MONTH,1); 
int firstIndex=thisMonth.get(Calendar.DAY_OF_WEEK)-1; 
int maxIndex=thisMonth.getActualMaximum(Calendar.DAY_OF_MONTH); 
for(int i=0;i<maxIndex;i++) 
 { 
  days[firstIndex+i]=String.valueOf(i+1); 
 } 
%> 
<body> 
<FORM name="sm" method="post" action="calendar.jsp"> 
  <%=year%>年  <%=Integer.parseInt(month)+1%>月 
<table border="0" width="168" height="81"> 
<div align=center> 
 <tr> 
   <th width="25" height="16" bgcolor="#FFFF00"><font color="red">日</font> 
</th> 
   <th width="25" height="16" bgcolor="#FFFF00">一</th> 
   <th width="25" height="16" bgcolor="#FFFF00">二</th> 
   <th width="25" height="16" bgcolor="#FFFF00">三</th> 
   <th width="25" height="16" bgcolor="#FFFF00">四</th> 
   <th width="25" height="16" bgcolor="#FFFF00">五</th> 
   <th width="25" height="16" bgcolor="#FFFF00"><font color="green">六</fon 
t></th> 
 </tr> 
<% for(int j=0;j<6;j++) { %> 
<tr> 
     <% for(int i=j*7;i<(j+1)*7;i++) { %> 
    <td width="15%" height="16" bgcolor="#C0C0C0" valign="middle" align="ce 
nter"> 
    <a href="jump.jsp?year=<%=year%>&month=<%=Integer.parseInt(month)+1%>&d 
ate=<%=days[i]%>" target="main"><%=days[i]%></a></td> 
   <% }  %> 
 </tr> 
<% }  %> 
</div> 
</table> 
<table border="0" width="168" height="20"> 
<tr> 
 <td width=30%><select name="month" size="1" onchange="changeMonth()" > 
   <option value="0">一月</option> 
   <option value="1">二月</option> 
   <option value="2">三月</option> 
   <option value="3">四月</option> 
   <option value="4">五月</option> 
   <option value="5">六月</option> 
   <option value="6">七月</option> 
   <option value="7">八月</option> 
   <option value="8">九月</option> 
   <option value="9">十月</option> 
   <option value="10">十一月</option> 
   <option value="11">十二月</option> 
 </select></td> 
<td width=28%><input type=text name="year" value=<%=year%> size=4 maxlength 
=4></td> 
<td>年</td> 
<td width=28%><input type=submit value="提交"></td> 
</tr> 
</table> 
</FORM> 
<script Language="JavaScript"> 
<!-- 
 document.sm.month.options.selectedIndex=<%=month%>; 
//--> 
</script> 
</body> 
</html>   
关闭本页
 
首页 | 投资与合作 | 服务条款 | 隐私政策 | 收藏本站 | 设为首页 | 新用户注册 | 免责声明 | 使用帮助
Copyright ©2005-2008 chinaitpower.com All rights reserved. www.chinaitpower.com 版权所有