明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

提高ASP頁(yè)面的執(zhí)行效率(中)

[摘要]2.影響ASP的要素  (1).盡量把對(duì)象變量轉(zhuǎn)換成本地變量,因?yàn)樽x本地變量比讀對(duì)象變量要快許多! ”容^慢的例子:if Myobj.Value = 0 then Do somethingelseif Myobj.Value > 0 then Do somethingelseif Myobj.Va...
2.影響ASP的要素

  (1).盡量把對(duì)象變量轉(zhuǎn)換成本地變量,因?yàn)樽x本地變量比讀對(duì)象變量要快許多。

  比較慢的例子:

if Myobj.Value = 0 then
 Do something
elseif Myobj.Value > 0 then
 Do something
elseif Myobj.Value < 0 then
 Do something
end if

  比較快的例子:

MyVar = Myobj.Value
if MyVar = 0 then
 Do something
elseif MyVar > 0 then
 Do something
elseif MyVar < 0 then
 Do something
end if

  (2).如果你使用的是VBScript 5.0或者是更新的版本,盡量使用 With ... End With語(yǔ)句,這也可以提高你的程序運(yùn)行速度。

  比較慢的例子:

Myobj.FirstName = "Srinivasa"
Myobj.LastName = "Sivakumar"
Myobj.City = "Chicago"

  比較快的例子:

With Myobj
 .FirstName = "金虎"
 .LastName = "馬"
 .City = "滁州"
End with

  (3).就總體而言,避免使用session變量有助于提高速度,這是因?yàn)椴煌腁SP頁(yè)面分別在不同的線程里面運(yùn)行的,而session調(diào)用卻不是這樣的,他是連續(xù)的。