一个提供用户输入时期的绝好程序之(二)

2016-01-29 17:11 4 1 收藏

一个提供用户输入时期的绝好程序之(二),一个提供用户输入时期的绝好程序之(二)

【 tulaoshi.com - ASP 】

  DateSelect.asp 创立一个日历格式的。。。

<%@ LANGUAGE="VBSCRIPT" %
<%
'Code Written by D. Scott Hand
'If any errors are found, please
'e-mail scott_hand@pobox.com with
'the error and the way the error
'was caused
'***Purpose:************
'* This is a page built to show calendar functionality.
'* Description:
'* This is the instantiated file toto
'* allow the user to select a date.
'***********************
If Request.Querystring("Page") < "" Then
   PageName = Request.Querystring("Page")
   Session("PageName") = PageName
Else
   PageName = Session("PageName")
End If
If Request.Querystring("Form") < "" Then
   FormName = Request.Querystring("Form")
   Session("FormName") = FormName
Else
   FormName = Session("FormName")
End If
If Request.Querystring("Element") < "" Then
   ElementName = Request.Querystring("Element")
   Session("ElementName") = ElementName
Else
   ElementName = Session("ElementName")
End If
%
<HTML
<HEAD
<META NAME="GENERATOR" Content="Microsoft Visual InterDev 1.0"
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1"
<TITLESelect Date</TITLE
</HEAD
<BODY BGColor="#ded6c5" alink="#526B84" vlink="#526B84" onBlur="javascript:self . focus ();"
<SCRIPT LANGUAGE="javascript"
   function calpopulate(dte) {
   window.opener.<%=formname & "." & elementname%.value = dte;
   self.close()
      }
</SCRIPT
<%
If IsDate(Request.QueryString("Date")) Then
BuildDate=Request.QueryString("Date")
Else

If Request.Querystring("BMonth") = "" Then
BMonth = Month(Now)
Else
BMonth = Request.Querystring("BMonth")
End If

If Request.QueryString("BYear") < "" Then
BuildDate = BMonth & "/" & "1" & "/" & _
       Request.QueryString("BYear")
Else
BuildDate = BMonth & "/" & "1" & "/" & Right(Year(Now), 2)
End If

End If
Session("CurrentDate")=BuildDate

'This gives the position of weekday for that date
BuildDayValue = Weekday(BuildDate)


CurrentMonth = Month(BuildDate)
%
<center
<table
<tr
<td colspan="7" align="center"
<hr
<font size=2<b<%=MonthName(CurrentMonth)%&nbsp;<%=Year(BuildDate)%</b
<br

<%
'BuildDate=DateAdd("d", -1, BuildDate)
If CurrentMonth < 12 then
NextMonth=CurrentMonth+1 & "&BYear=" & Year(BuildDate)
Else
NextMonth="1&BYear=" & Year(DateAdd ("yyyy", 1, BuildDate))
End if

If CurrentMonth 1 then
PreviousMonth=CurrentMonth-1 & "&BYear=" & Year(BuildDate)
Else
PreviousMonth= "12&BYear=" & Year(DateAdd ("yyyy", -1, BuildDate))
End If
%
<a href="DateSelect.asp?BMonth=<%=PreviousMonth%"<font
size=-2<--Previous</a
&nbsp;&nbsp;&nbsp;
<a href="DateSelect.asp?BMonth=<%=NextMonth%"<font size=-2Next--</a

来源:http://www.tulaoshi.com/n/20160129/1500581.html

延伸阅读
类似于学习机上的指法练习程序,简单而实用#includetime.h main() { int x,y,i,j; unsigned int Timer; char ch; char key; char *kb[]={"Q W E R T Y U I O P [ ]","A S D F G H J K L ; '","Z X C V B N M , . /"}; long AllCounter=0,RightCounter=0,FalseCounter=0; ...
标签: PHP
  分析: 我们利用一个文件(data.dat)来存储投票栏目.每个栏目占据一行. 这样一来,便可随意加入和减去想要投票的栏目. 我们再利用一个文件(votes.dat)来存储我们的投票结果. 并纪录最近一位投票者的IP地址,简单的防止一人多投. 所以,您应该在该程序目录下自行建立两个文件data.dat和votes.dat 程序运行过程部分 程序运行时应该...
前不久大家都在讨论怎样通过一个程序来生成另一个程序,我提出了将另一个程序当资源文件包含在程序中一起编译,然后在程序运行时根据需要再重新生成出来,下面是我的一个例子, 在这里,我将windows自带的写字板(writer.exe)当资源. 下面是源代码 //资源文件writer.exe长度为204800,在资源文件中定义为"CUSTOM"资源,编号为1111 ...
在VB5.0具有面向对象的程序设计思想及可视化的编程方式,可开发出各种多媒体应用程序,颇得软件设计者青睐。笔者最近应用VB5.0编制了一程序,成功实现了“图文并茂”的屏幕效果,即:屏幕出现用户选定的一幅赏心悦目的图像,在图像下方有一行字幕缓缓地从屏幕右边向左边移动,全部文字移至左边消失后,从右边又平滑拖出字幕,字幕移动过程中既不...
---- 用过DreamWeaver的人都会发现DreamWeaver将每一个编辑的文件显示在任务栏上,并且用户任意关闭一窗口而不影响其他窗口,好象每一个窗口间没有关联,没有主窗口似的。但我们也能发现其实这些窗口间也有数据是共享的,如存盘的路径。 ---- 经过研究我发现其实这些窗口其实是属于同一程序的,并且实现方法也非常的简单。下面我用Inprise公...

经验教程

60

收藏

56
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部