2012年5月17日 星期四

開始-執行指令大全

gpedit.msc--------------------群組原則
sndrec32----------------------錄音機
Nslookup----------------------IP位址偵測器
explorer----------------------開啟檔案總管
logoff------------------------登出指令
tsshutdn----------------------60秒倒計時關機指令
lusrmgr.msc-------------------本地機用戶和組
services.msc------------------本機服務設定
oobe/msoobe /a----------------檢查XP是否啟動
notepad-----------------------開啟記事本

2012年5月14日 星期一

ASP的FileSystemObject對象


指定的文件存在嗎?
本例演示如何首先創建FileSystemObject對象,然後使用FileExists方法來探測某文件是否存在。
<html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
If (fs.FileExists("c:\windows\cursors\xxx.cur"))=true Then
       Response.Write("文件 c:\windows\cursors\xxx.cur 存在。")
Else
       Response.Write("文件 c:\windows\cursors\xxx.cur 不存在。")
End If
set fs=nothing
%>
</body>
</html>
運行結果如下:「 文件 c:\windows\cursors\xxx.cur 不存在。」

ASP的字串處理函數

LEN字串長度函數:計算字串的長度。
len("abcd")                  4
len("中文字")               3
len(abc中文)               5

MID取部份字串函數:依開始位置擷取固定長度字串。
mid("vbscript",3,3)       scr
mid("vbscript",3)          script
mid("vbscript",1,2)       vb