主頁 > 知識(shí)庫 > 如何制作一個(gè)Web日程安排表?

如何制作一個(gè)Web日程安排表?

熱門標(biāo)簽:常州智能外呼電銷機(jī)器人如何 推銷電話機(jī)器人怎么打電話的 自適應(yīng)地圖標(biāo)注 教育機(jī)構(gòu)地圖標(biāo)注 400電話是怎么申請(qǐng) 重慶400電話哪里辦理 語音電銷機(jī)器人視頻 武漢如何辦理400電話 遼寧營(yíng)銷智能外呼系統(tǒng)價(jià)格多少

chunfeng.asp

' 該頁面可以看到已安排了哪些事情,并在底部鏈接可按月前后翻動(dòng).

' 該代碼包含獲得數(shù)據(jù)連接的函數(shù),如果數(shù)據(jù)源一旦有變化,則只有一個(gè)位置需要編輯連接信息(服務(wù)器、用戶和口令).

  @ LANGUAGE="VBscript"

  ENABLESESSIONSTATE = False %>

  <%

  ' 表頭包括用來啟動(dòng)所有頁的文件,包括全局函數(shù).

  Option Explicit

  Response.Buffer = True

  Response.Expires = 0

  sub Dochunfeng(strtitle)

  %>

  html

     head

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

     title>星河影動(dòng)之精英日程安排<%= strtitle %></title

     /head

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

     basefont face="Verdana, Arial"

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

     h3><%= strtitle %></h3

  <%

  ' 創(chuàng)建數(shù)據(jù)庫連接.

  end sub

' 調(diào)用Connection 對(duì)象 Execute 方法,將希望執(zhí)行的命令的文本字符串傳入,一旦有了記錄集,就可在其中循環(huán).

  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

  ' 作為結(jié)果,使用set命令傳出新連接.

  set GetDataConnection = oConn

  end function

  %>

 

Calendar.sql

-- 建立SQL服務(wù)器端.只需保存表明事件性質(zhì)的一個(gè)文本字符串(最長(zhǎng)為100個(gè)字符)即可.

 

-- 創(chuàng)建表

  create table Schedule

  (

  idSchedule smallint identity primary key,

  dtDate smalldatetime not null,

  vcEvent varchar(100) not null

  )

  go

  -- 存儲(chǔ)過程

  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]

標(biāo)簽:襄陽 中山 威海 柳州 朔州 邯鄲 雞西 遵義

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《如何制作一個(gè)Web日程安排表?》,本文關(guān)鍵詞  如何,制作,一個(gè),Web,日程,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《如何制作一個(gè)Web日程安排表?》相關(guān)的同類信息!
  • 本頁收集關(guān)于如何制作一個(gè)Web日程安排表?的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章