《ASP網路程式設計》學習筆記之二

2021-04-08 20:12:01 字數 1489 閱讀 9956

1、使用response物件在網頁上輸出內容

<%

if hour(now) = 0 then

response.write "現在是午夜。 "

end if

if hour(now) = 12 then

response.write "現在是中午。"

end if

if (hour(now) >=1) and (hour(now) <= 11) then

response.write "上午" & hour(now) & "點。"

end if

if (hour(now) >= 13) and (hour(now) <=23) then

response.write "下午" & hour(now) -12 & "點。"

end if

%>

2、for迴圈

建立10*10的**

<%

for introw = 1 to 10

response.write ""

for intcol = 1 to 10

response.write "" & (introw - 1) * 10 + intcol & ""

next

response.write ""

next

%>

3、css檔案

3、do loop迴圈

<%

introw=15

intcol=1

do while

4、過程

<%

function transtr(oldstr) '轉換字串函式

dim newstr

newstr = trim(oldstrr)

newstr = replace(newstr," ' "," ' ' ")

transtr = newstr

end function

%>

5、err物件無錯誤顯示

<%

dim intyoursalary

intyoursalary = 100000

response.write ("您的薪水是 $" & ccur (intyorsalary) & "。

")%>

6、err物件有錯誤顯示

<%option explicit %>

<%

on error resume next

dim intyoursalary

intyoursalary = 100000

response.write ("您的薪水是 $" & ccur (intyorsalary) & ".

")if err.number <>0 then

response.write "錯誤號是: " & err.number & "

"response.write "錯誤號是" " & err.description

end if

%>

《網頁程式設計》學習筆記之二

示例1 html簡介 html簡介 html簡介 示例2 這將是一種很有趣的體驗 另一個段落標記 單擊此處訪問北京阿博泰克北大青鳥資訊科技 的主頁 示例3 blockquote 元素用於以文字塊的形式設定內容格式。漢普蒂.鄧普蒂坐在牆上 漢普蒂.鄧普蒂摔了一大跤 國王所有的馬 和所有的人 也無法再把...

SDL學習筆記之二

sdl su ce image sdl loadbmp image.bmp 2.從一個表面,進行塊複製到另一個表面 sdl blitsu ce int sdl blitsu ce sdl su ce src,sdl rect sr,sdl su e dst,sdl rect dr 第二個引數指定要傳...

SDL學習筆記之二

sdl su ce image sdl loadbmp image.bmp 2.從一個表面,進行塊複製到另一個表面 sdl blitsu ce int sdl blitsu ce sdl su ce src,sdl rect sr,sdl su e dst,sdl rect dr 第二個引數指定要傳...

Qt學習筆記之二

如下圖所示 新版本的qt gui 被包含到qtwidget中去了。可以在新建工程的pro檔案中新增包含項 qt coreguiwidgets 之前只有core 和 gui 可以在後面新增widgets 這也是為什麼有些朋友找不到標頭檔案比如說 等等 如下圖所示 再檢視qtwidgets資料夾可以發現...

Oracle學習筆記之二

筆錄oracle oracle完全學習手冊 2017 08 18 整體把握oracle資料庫,瞭解資料庫的體系架構 1.oracle資料庫的體系結構 物理儲存結構,邏輯儲存結構,記憶體結構,例項程序結構 2.oracle物理儲存結構 oracle物理上是由儲存在作業系統的檔案組成 資料檔案 dbf ...