驅(qū)動(dòng)器是否已就緒?
代碼:
<!DOCTYPE html><html>
<body>
<%
dim fs,d,n
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:")
n = "The " & d.DriveLetter
if d.IsReady=true then
n = n & " drive is ready."
else
n = n & " drive is not ready."
end if
Response.Write(n)
set d=nothing
set fs=nothing
%>
</body>
</html>
結(jié)果:
The C drive is ready.
相關(guān)文章
- ASP.NET Web 的 C# 和 VB 實(shí)例
- ASP.NET MVC 簡(jiǎn)介
- ASP.NET CalendarDay 控件
- ASP.NET Panel 控件
- ASP.NET Table 控件
- WebSecurity GetPasswordChangeDate 方法
- ASP.NET HTML 控件 Calendar
- ASP.NET HTML 控件 Image
- ASP.NET HTML 控件 Literal
- ASP.NET HTML 控件 Repeater
- ASP.NET HTML 控件 Table
- ASP.NET HTML 控件 SortedList RadioButtonList 1
- C# 實(shí)例 可重復(fù)使用的頭部和底部
- ASP.NET Calendar DayNameFormat 屬性
- ASP.NET Calendar TitleFormat 屬性
- ASP.NET ToolTip 屬性
- ASP.NET Image AlternateText 屬性
- ASP.NET Table Caption 屬性
- ASP.NET Table CellPadding 屬性
- 設(shè)置在頁(yè)面失效前把頁(yè)面在瀏覽器中緩存多少分鐘