SmokeEater
Technical User
I have been able to check http:// hyperlinks on my website, using this function, which I found on Tek-Tips.
My problem is I have some hyperlinks using file://
How do I check these links?
Code:
Private Function File(byVal pathname)
Dim objFSO
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
File = objFSO.FileExists(pathname)
Set objFSO = Nothing
End Function
How do I check these links?