|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP一般认为只能运行在IIS上,正如前面所提到的,这并不是十分正确,事实上,ASP也能运行在Apache上。ApacheASP可在任意Apache服务器上运行有限的ASP功能,所需做的,只需打开mod_perl。Manytimeswemightneedsomepartofcodewhichwillaccessallsub-foldersoftheserverandalsoall
fileswithinthesub-folder.
Thefollowinglineofaspcodewillmaptoaspecifiedfolderandsearchesallthesub-folders
(Notrecursively,codecanbeextendedtodo)andreadsallfiles(basicallytextfiles)onebyone.
Youcanspecifyanyfoldername,intheremarksgiveninthecode(within"")
CreateaFilesystemObject
setFileSystem=server.CreateObject("scripting.filesystemobject")
dimdbconn
folderpath=server.MapPath("mainFolderpath")
setsfolder=Filesystem.GetFolder(folderpath).SubFolders
foreachFolderIteminsfolder
setFiles=FolderItem.Files
foreachFileIteminFiles
fname=server.MapPath("mainfolderpath"&FolderItem.Name&""&FileItem.Name
setFile=FileSystem.OpenTextFile(fname,1,false)
whileFile.AtEndofStreamTrue
record=split(File.Readline,"~")
wend
File.close
FileSystem.DeleteFile(fname)
next
next
楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。 |
|