驱动器是否已就绪?
代码:
<!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>
结果:
The C drive is ready.
相关文章
- ASP.NET Web 的 C# 和 VB 实例
- ASP.NET MVC 简介
- 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# 实例 可重复使用的头部和底部
- ASP.NET Calendar DayNameFormat 属性
- ASP.NET Calendar TitleFormat 属性
- ASP.NET ToolTip 属性
- ASP.NET Image AlternateText 属性
- ASP.NET Table Caption 属性
- ASP.NET Table CellPadding 属性
- 设置在页面失效前把页面在浏览器中缓存多少分钟