如何制作一个Web日程安排表?

发布时间:2022-04-17 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了如何制作一个Web日程安排表?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

chunfeng.asp

' 该页面可以看到已安排了哪些事情,并在底部链接可按月前后翻动.

' 该代码包含获得数据连接的函数,如果数据一旦有变化,则只有一个位置需要编辑连接信息(服务器、用户和口令).

&nbsp; <@ LANGUAGE="vbscript"

  ENABLESESSIONstatE = False %>

  <%

  ' 表头包括用来启动所有页的文件,包括全局函数.

  Option ExplicIT

  Response.Buffer = True

  Response.Expires = 0

  sub Dochunfeng(strtitle)

  %>

  htML

     head

     META HTTP-EQUIV="Content-tyPE" CONTENT="text/html; charset=gb2312"

     title>星河影动之精英日程安排<%= strtitle %></title

     /head

     body bgcolor="white" link="blue" alink="blue" vlink="blue"

     basefont face="Verdana, Arial"

     center><h1>我的日程安排</h1

     h3><%= strtitle %></h3

  <%

  ' 创建数据库连接.

  end sub

' 调用Connection 对象 Execute 方法,将希望执行的命令的文本字符串传入,一旦有了记录集,就可在其中循环.

  function GetDataConnection()

  dim oConn, strConn

  Set oConn = Server.CreateObject("ADODB.Connection")

  strConn = "PRovider=SQLOLEDB; Data Source=adspm; Initial CataLOG=TeamWeb; "

  strConn = strConn && "User Id=TeamWeb; Password=x"

  oConn.Open strConn

  ' 作为结果,使用set命令传出新连接.

  set GetDataConnection = oConn

  end function

  %>

 

Calendar.sql

-- 建立SQL服务器端.只需保存表明事件性质的一个文本字符串(最长为100个字符)即可.

 

-- 创建表

  create table Schedule

  (

  idSchedule smallint identity Primary key,

  dtDate smalldatetime not null,

  vcEvent vArchar(100) not null

  )

  go

  -- 存储过程

  create procedure GetSchedule (@nMonth tinyint, @nYear smallint)

  as

  select idSchedule, convert(VARchar, datepart(dd, dtDate)) 'nDay', vcEvent

  From Schedule

  where datepart(yy, dtDate) = @nYear and datepart(mm, dtDate) = @nMonth

  order by datepart(dd, dtDate)

  go

  create procedure AddEvent (@vcDate varchar(20), @vcEvent varchar(100))

  as

  insert Schedule

  select @vcDate, @vcEvent

  go

  create procedure DeleteEvent (@idSchedule smallint)

  as

  delete Schedule where idSchedule = @idSchedule

  go

[1]

脚本宝典总结

以上是脚本宝典为你收集整理的如何制作一个Web日程安排表?全部内容,希望文章能够帮你解决如何制作一个Web日程安排表?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: