PC Infinity's Archiver

閒魂 發表於 2008-7-31 15:21

Adobe Coldfusion 簡介…

[size=12pt]Coldfusion[/size][font=PMingLiU][size=12pt]包含的核心組件有[/size][/font][size=12pt]:[/size][size=12pt][/size]

[b][font=PMingLiU][size=12pt]一、[/size][/font][/b][b][size=12pt]Colfusion[/size][/b][b][font=PMingLiU][size=12pt]應用伺服器[/size][/font][/b][b][size=12pt][/size][/b]
[font=PMingLiU][size=12pt] - 一個軟體程式[/size][/font][size=12pt],[/size][font=PMingLiU][size=12pt]類似[/size][/font][size=12pt]ASP.[/size][size=12pt][/size]
[font=PMingLiU][size=12pt] - 解釋[/size][/font][size=12pt].cfm[/size][font=PMingLiU][size=12pt]或[/size][/font][size=12pt].cfc[/size][font=PMingLiU][size=12pt] - 頁面裏的特殊標籤裏的內容[/size][/font][size=12pt][/size]
[font=PMingLiU][size=12pt] - 執行流程[/size][/font][size=12pt]:[/size][size=12pt][/size]
[size=12pt][img=600,520]http://idler.pcinhk.com/tutorials/coldfusion/coldfusion_tutorial.files/image001.gif[/img][/size][size=12pt][/size]

[b][font=PMingLiU][size=12pt]二、[/size][/font][/b][b][size=12pt]Coldfusion[/size][/b][b][font=PMingLiU][size=12pt]標記語言[/size][/font][/b][b][size=12pt](CFML)[/size][/b][b][size=12pt][/size][/b]

[font=PMingLiU][size=12pt]特點:[/size][/font][size=12pt][/size]
[font=PMingLiU][size=12pt] - 與[/size][/font][size=12pt]Html[/size][font=PMingLiU][size=12pt]類似[/size][/font][size=12pt],[/size][font=PMingLiU][size=12pt]但是在伺服器端執行的語言[/size][/font][size=12pt][/size]
[font=PMingLiU][size=12pt] - 都是以[/size][/font][size=12pt]cf[/size][font=PMingLiU][size=12pt]開頭[/size][/font][size=12pt][/size]
[/size][/font][font=PMingLiU][size=12pt] - 一般都有開始標籤和結束標籤[/size][/font][size=12pt][/size]
[/size][/font][font=PMingLiU][size=12pt] - 使用屬性[/size][/font][size=12pt].[/size][size=12pt][/size]
[b][size=12pt] [/size][/b]

[b][font=PMingLiU][size=12pt]三、[/size][/font][/b][b][size=12pt]Coldfusion[/size][/b][b][font=PMingLiU][size=12pt]管理工具[/size][/font][/b][b][size=12pt](Administrator)[/size][/b][b][size=12pt][/size][/b]

[font=PMingLiU][size=12pt]配置和維護[/size][/font][size=12pt]Coldfusion[/size][font=PMingLiU][size=12pt]應用伺服器的工具[/size][/font][size=12pt][/size]
[/size][/font][font=PMingLiU][size=12pt] - 配置[/size][/font][size=12pt]Coldfusion[/size][font=PMingLiU][size=12pt]Data Source[/size][/font][size=12pt][/size]
[/size][/font][font=PMingLiU][size=12pt] - 輸出方式[/size][/font][size=12pt][/size]
[/size][/font][font=PMingLiU][size=12pt] - 伺服器設置[/size][/font][size=12pt][/size]
[/size][/font][font=PMingLiU][size=12pt] - 應用程式的安全性[/size][/font][size=12pt].[/size]

閒魂 發表於 2008-7-31 15:36

[size=3]CFML基礎知識[/size]

[b]一、Coldfusion 頁面輸出[/b]

<cfoutput>Hello world!</cfoutput>

[b]二、常量[/b]

(Coldfusion不允許為常量指定名稱,只能是固定值如123,”hello”)

[b]三、變數[/b]

1.命名規則

- 變數名與大小寫無關
- 變數名只能包括字母,數位和下劃線.
- 每個變數名必須以字母開頭.
- 不允許使用特殊字元(如"")和Coldfusion的保留字(如函數名和標籤名)

2.變數的類型

ColdFusion被認為是無類型的, 無需指定變數的資料類型

資料是有類型的,決定了變數在記憶體中保存方式

- 簡單類型
 * 整數,如135
 * 實數,如-9.7856
 * 布林值 包括 True和False
 * 日期時間值 2005-04-07 12:56:12

- 複雜類型
 * 陣列
 * 結構
 * 查詢


- 二進位類型
 * 原始資料,如gif檔或exe檔的內容

- Object
 * Com Object
 * CORBA Object
 * Java Object
 * Web Services
 * Coldfusion 組件

3.變數的作用域

用Prefix表示作用域

[img]http://idler.pcinhk.com/tutorials/coldfusion/coldfusion_variable_domain.png[/img]

要求變數名都需要寫首碼,除了variables,提高性能及可讀性

4.定義變數

 * 所有變數在使用前必須定義
 * 用cfset標籤定義變數 <cfset a=123>
 * 用cfparam 標籤定義變數 <cfparam name=”b” default=”456”>

5.輸出變數

 * 用cfoutput輸出顯示結果
 * 用##包圍變數名,<cfoutput>#a#</cfoutput>

6.類型轉換

herman 發表於 2008-7-31 22:18

coldfusion server 搞極都無咩人用, server 太貴 la

kelvinlok 發表於 2008-7-31 22:20

[quote]原帖由 [i]herman[/i] 於 2008-7-31 22:18 發表 [url=http://pcin.sytes.net/discuz/redirect.php?goto=findpost&pid=106773&ptid=10990][img]http://pcin.sytes.net/discuz/images/common/back.gif[/img][/url]
coldfusion server 搞極都無咩人用, server 太貴 la [/quote]用m記好過#good#

觀星是答案 發表於 2008-7-31 23:16

[quote]原帖由 [i]herman[/i] 於 2008-7-31 22:18 發表 [url=http://www.pcinhk.com/discuz/redirect.php?goto=findpost&pid=106773&ptid=10990][img]http://www.pcinhk.com/discuz/images/common/back.gif[/img][/url]
coldfusion server 搞極都無咩人用, server 太貴 la [/quote]
一套要幾銀 ???

頁: [1]

Powered by Discuz! Archiver 7.0.0  © 2001-2009 Comsenz Inc.