mirror of
https://github.com/gryf/tagbar.git
synced 2025-12-17 19:40:27 +01:00
15 lines
213 B
Plaintext
15 lines
213 B
Plaintext
<html>
|
|
<body>
|
|
|
|
<%
|
|
dim fs,d
|
|
set fs=Server.CreateObject("Scripting.FileSystemObject")
|
|
set d=fs.GetDrive("c:")
|
|
Response.Write("The serialnumber is " & d.SerialNumber)
|
|
set d=nothing
|
|
set fs=nothing
|
|
%>
|
|
|
|
</body>
|
|
</html>
|