MediaStoreTemplate.jsp
上传用户:wenzhanhao
上传日期:2022-03-28
资源大小:9150k
文件大小:2k
源码类别:

百货/超市行业

开发平台:

Visual C++

  1. <%@ page contentType="text/html; charset=gbk" language="java" %>
  2. <%@ taglib uri='/WEB-INF/tlds/MediaStore_template.tld' prefix='mstemplate' %>
  3. <html>
  4. <head>
  5. <title>Media Store</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gbk">
  7. <link rel="stylesheet" href="./css/style.css" type="text/css">
  8. <script language="javascript" src="./js/menu.js">
  9. </script>
  10. <SCRIPT LANGUAGE="JavaScript">
  11. <!-- Original:  Ben McFarlin (mcfarlin@netscape.net) -->
  12. <!-- Web Site:  http://sites.netscape.net/mcfarlin -->
  13. <!-- This script and many more are available free online at -->
  14. <!-- The JavaScript Source!! http://javascript.internet.com -->
  15. <!-- Begin
  16. function populate(objForm,selectIndex) {
  17. timeA = new Date(objForm.year.options[objForm.year.selectedIndex].text, objForm.month.options[objForm.month.selectedIndex].value,1);
  18. timeDifference = timeA - 86400000;
  19. timeB = new Date(timeDifference);
  20. var daysInMonth = timeB.getDate();
  21. for (var i = 0; i < objForm.day.length; i++) {
  22. objForm.day.options[0] = null;
  23. }
  24. for (var i = 0; i < daysInMonth; i++) {
  25. objForm.day.options[i] = new Option(i+1);
  26. }
  27. document.f1.day.options[0].selected = true;
  28. }
  29. function getYears() {
  30. // You can easily customize what years can be used
  31. var years = new Array(1997,1998,1999,2000,2001,2005)
  32. for (var i = 0; i < document.f1.year.length; i++) {
  33. document.f1.year.options[0] = null;
  34. }
  35. timeC = new Date();
  36. currYear = timeC.getFullYear();
  37. for (var i = 0; i < years.length; i++) {
  38. document.f1.year.options[i] = new Option(years[i]);
  39. }
  40. document.f1.year.options[2].selected=true;
  41. }
  42. window.onLoad = getYears;
  43. //  End -->
  44. </script>
  45. </head>
  46. <body background='./images/bgall.gif'>
  47. <table width="98%" align="center">
  48.   <tr> 
  49.     <td><%@include file='/html/head.htm'%></td>
  50.   </tr>
  51.   <tr> 
  52.     <td><%@include file='/jsp/Menu.jsp'%></td>
  53.   </tr>
  54.   <tr>
  55.    <td><mstemplate:get name='content' /></td>
  56.   </tr>
  57. </table>
  58. </body>
  59. </html>