一个提供用户输入时期的绝好程序之(一)
程序员文章站
2023-01-23 22:10:55
testcal.
testcal.
<html>
<head>
<meta name="generator" content="microsoft visual interdev 1.0">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>test calendar date selection</title>
</head>
<body bgcolor="#ffffff">
<center>
<script language="javascript">
{
self.name="body";
}
function calpopup(lnk) {
window.open(lnk, "calendar","height=250,width=250,scrollbars=no")
}
</script>
<form name="dataentry" method="post" action="testcal.asp">
<table border="3" width="75%" bgcolor="#ded6c5">
<tr><td align="center"><br>
<input type="text" name="fromdate" size="20" value="click here to select date..."
onclick="calpopup(dateselect.asp?page=body&form=dataentry&element=fromdate)">
<input type="submit" value=" enter ">
<br> </td></tr>
</table>
</form>
<br><br>
<a href="calendardetail.asp">
view</a> application description.
</center>
</center>
</body>
</html>
<html>
<head>
<meta name="generator" content="microsoft visual interdev 1.0">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>test calendar date selection</title>
</head>
<body bgcolor="#ffffff">
<center>
<script language="javascript">
{
self.name="body";
}
function calpopup(lnk) {
window.open(lnk, "calendar","height=250,width=250,scrollbars=no")
}
</script>
<form name="dataentry" method="post" action="testcal.asp">
<table border="3" width="75%" bgcolor="#ded6c5">
<tr><td align="center"><br>
<input type="text" name="fromdate" size="20" value="click here to select date..."
onclick="calpopup(dateselect.asp?page=body&form=dataentry&element=fromdate)">
<input type="submit" value=" enter ">
<br> </td></tr>
</table>
</form>
<br><br>
<a href="calendardetail.asp">
view</a> application description.
</center>
</center>
</body>
</html>
上一篇: 详解javascript 正则表达式之分组与前瞻匹配
下一篇: 在ASP应用中验证用户身份(1)
推荐阅读
-
一个提供用户输入时期的绝好程序之(一)
-
一个提供用户输入时期的绝好程序之(二)
-
编写程序,用户输入一个列表和2个整数作为下标,然后输出列表中介于2个下标之间的元素组成的子列表
-
C语言 编写加密程序,将用户输入的一个英文句子加密为加密字符串,然后输出加密字符串。
-
编写一个用户自定义函数,该函数有三个整数参数,函数的功能是:求解这三个整数的最大值,函数的返回值为三个参数的最大值。编写一个程序,从键盘输入N组数据,每组分别是任意5个整数,通过两次调用用户自定义函数
-
Java编写程序之输入一个数字实现该数字阶乘的计算
-
编写一个应用程序,用户分别从两个文本框输入学术的姓名和分数,程序按成绩排序将这些学生的姓名和分数显示在一个文本区中。
-
一个提供用户输入时期的绝好程序之(一)
-
一个提供用户输入时期的绝好程序之(二)
-
编写一个程序,让用户输入3个数。首先确认所有数字各不相同,如果存在相同的数,输出"There are same numbers.",否则输出其中最大的数。