动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > ASP实例
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
网络编程:ASP教程,ASP.NET教程,PHP教程,JSP教程,C#教程,数据库,XML教程,Ajax,Java,Perl,Shell,VB教程,Delphi,C/C++教程,软件工程,J2EE/J2ME,移动开发
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ ASP实例 ]的信息

本月文章推荐
.ASP进阶之文章在线管理更新(12).
.ASP进阶之文章在线管理更新(4).
.取得服务器上用户组列表脚本之VB.
.无组件的数据库的备份与还原.
.磁盘ID在ASP源码防拷贝中的应用.
.简单的浮点论坛.
.利用ASP制作EXECL报表方法(二).
.怎样做自己的二级域名(之三).
.利用ASP实现三个强大功能之一.
.用ASP实现论坛的UBB功能(二).
.调试 ASP 中使用的 Visual Basic.
.虹雨的功能较全的计数程序.
.ASP网站远程客户实现EXCEL打印功.
.ASP无组件上载,带进度条,多文件上.
.多个域名后缀同时查询的域名查询.
.利用ASP.NET设计FTP文件上传(上).
.FrontPage创建HTML/ASP混合页面.
.用ASP开发一个在线考试程序(六).
.用ASP实现对Web搜索引擎Index Se.
.产生密码,记录到数据库,然后发.

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

发表日期:2000-8-28 |


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">
<TITLE>Select 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=-2>Next--></a>


<hr></td>
</tr>
<tr>
<td><font size="-3">Su</td><td><font size="-3">Mo</td><td><font
size="-3">Tu</td><td><font size="-3">We</td><td><font
size="-3">Th</td><td><font size="-3">Fr</td><td><font size="-3">Sa</td>
</tr>
<tr>

<tr>
<%
DayPosition=1
'Now loop through table build with blanks until first day of month
'is in position
For I = 1 to BuildDayValue-1

%>
<td><font size="-3">&nbsp;</td>
<%
DayPosition=DayPosition+1
Next

Do Until CurrentMonth <> Month(BuildDate)
%>

<%
While DayPosition<>8
%>
<td align="center" <%If Day(BuildDate)=Day(Now) Then Response.Write "bgcolor=""#FFFFFF"""%>
onClick="<%Response.Write "calpopulate('" & Month(BuildDate) & "/" & Day(BuildDate) & "/" & Right(Year
(BuildDate),2)%>')"><font size="-3">

<a href=""><%=Day(BuildDate)%></a>
</td>
<%
DayPosition=DayPosition+1
BuildDate=DateAdd("d", 1, BuildDate)
If CurrentMonth <> Month(BuildDate) then
DayPosition=8
End If
Wend
DayPosition=1
%>

</tr><tr>
<%
Loop
%>
</tr>
</table>
</center>
</BODY>
</HTML>


上一篇:一个提供用户输入时期的绝好程序之(一) 人气:12401
下一篇:构建你的网站新闻自动发布系统之一 人气:19124
浏览全部输入时期的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-10-14 25175学生成绩管理系统 v2.88
2008-10-14 冰雪CMS v2.0 bulid 081013
2008-10-14 Modoer多功能点评系统 v1.1 Beta
2008-10-14 乐风CMS乐风影视版 v2008.10.13
2008-10-14 FeitecCMS 40T免费资源网整站源码
2008-10-14 Asoft签到管理系统 v3.0 Pack2
2008-10-14 金博人才招聘求职网黄金版 v4.2
2008-10-14 游戏推广无限制版本
2008-10-14 AmEav WebSite 业网站管理系统 英
2008-10-11 联系人分组工具 v1.1 中文破解版
2008-10-11 FaceMelter变脸 v2.0 汉化破解版
2008-10-11 PathTracker道路跟踪仪 v1.2 破解
2008-10-11 Rooms手机聊天室 v0.6.7 破解版
2008-10-11 RemoteDesktop远程桌面 v1.0 破解
2008-10-11 ProRemote远程调音台 v1.0.1 破解
2008-10-11 PicShare照片共享 v1.0.0 破解版
2008-10-11 Photogene照片编辑器 v1.5 汉化破
2008-10-11 WriteRoom共享文档 v1.0 破解版
  发表评论
姓 名: 验证码:
内 容:
站长工具:网站收录查询 | Google PR查询 | ALEXA排名查询 | CSS在线编辑器 | 广告代码 | js/vbs加密 | md5加密 | 进制转换 | UTF-8 转换工具 | Html转换js | Html转换asp | Html转换php | Html转换perl
实用工具:汉字翻译拼音 | 拼音字典 | 符号对照表 | 个税计算 | 实时汇率查询换算 | 经典小工具 | 汉字简繁转换 | 普通单位换算 | 公制单位换算 | 生辰老黄历 | 国内电话区号 | 国家代码与域名缩写 | 文字加密解密 | 健康查询 | 万年历 | 汉字横竖排版 | 手机号码查询 | 计算器 | ip搜索
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号
ホームページ制作 不動産検索システム 求人情報
防水工事·改修工事 フットサル大会 探偵
SEO対策 中国語教室 ホームページ作成