推荐:解读asp调用子程序教程ASP程序可通过VBScript和其他方式调用子程序。 调用使用VBScript的子程序,示例代码: html head % subvbproc(num1,num2) response.write(num1*num2) endsub % /head body p您可以像这样调用一个程序:/p p结果:%callvbproc(3,4)%/p p或者,像这样:/p p结果
指定的驱动器存在吗?<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") if fs.driveexists("c:") = true then Response.Write("驱动器 c: 存在。") Else Response.Write("驱动器 c: 不存在。") End If Response.write("<br>") if fs.driveexists("g:") = true then Response.Write("驱动器 g: 存在。") Else Response.Write("驱动器 g: 不存在。") End If set fs=nothing %> </body> </html> |
<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") p=fs.GetDriveName("c:/windows/cursors/abc.cur") Response.Write("驱动器名称是:" & p) set fs=nothing %> </body> </html> |
<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> |
<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") If fs.FolderExists("c:/temp") = true Then Response.Write("文件夹 c:/temp 存在。") Else Response.Write("文件夹 c:/temp 不存在。") End If set fs=nothing %> </body> </html> |
<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") p=fs.GetParentFolderName("c:/winnt/cursors/3dgarro.cur") Response.Write("c:/windows/cursors/abc.cur 的父文件夹名称是:" & p) set fs=nothing %> </body> </html> |
<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") Response.Write("文件 3dgarro 的文件扩展名是:") Response.Write(fs.GetExtensionName("c:/windows/cursors/abc.cur")) set fs=nothing %> </body> </html> |
<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") Response.Write("这个文件名的最后一个成分是:") Response.Write(fs.GetFileName("c:/windows/cursors/abc.cur")) set fs=nothing %> </body> </html> |
<html> <body> <% Set fs=Server.CreateObject("Scripting.FileSystemObject") Response.Write(fs.GetBaseName("c:/windows/cursors/abc.cur")) Response.Write("<br />") Response.Write(fs.GetBaseName("c:/windows/cursors/")) Response.Write("<br />") Response.Write(fs.GetBaseName("c:/windows/")) set fs=nothing %> </body> </html> |
abc cursors windows |
分享:解析ASP日期格式的数据加减计算方法在ASP中为我们提供了专门的日期加减函数。 1.日期相加 DateAdd函数 返回已添加指定时间间隔的日期。 DateAdd(interval,number,date) DateAdd函数的语法有以下参数 (1)interval必选项。字符串表达式,表示要添加的时间间隔。有关数值,请参阅“设置”部分。
新闻热点
疑难解答