判断是否支持FSO问题
											<%
On Error Resume Next
  IsObjInstalled = False
  Err = 0
  Dim xTestObj
  Set xTestObj = Server.CreateObject("Scripting.FileSystemObject")
  If 0 = Err Then IsObjInstalled = True
  Set xTestObj = Nothing
  Err = 0
  Response.Write (IsObjInstalled)
%>
这是判断是否支持FSO
帮我解释一下什么意思!!,
谢谢!!
[此贴子已经被作者于2005-12-5 21:27:17编辑过]

											
	    
