求教:if ......then 的用法?
有这么一段代码:if page<=0 then page=1
if request.QueryString("page")="" then page=1
作者介释:
当if....then...放在一行的时候 end if可以省略。
下面二句有什么区别?
if page<=0 then page=1 与
if page<=0 then
page=1
end if
2008-05-21 10:22
2008-05-25 10:54