default.asp
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. <%@ LANGUAGE="VBSCRIPT" %>
  2. <html>
  3. <head>
  4. <meta NAME="GENERATOR" Content="Microsoft FrontPage 3.0">
  5. <meta HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
  6. <title>MRTG DATA</title>
  7. </head>
  8. <body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#0000FF" alink="#0000FF">
  9. <h1>Your-Router-Name_here</h1>
  10. <h3>Ports on Router</h3>
  11. <%
  12. Set fs = CreateObject("Scripting.FileSystemObject")
  13.     Dim fs, f, f1, fc, fstr, linklen, bufflink
  14.     Set fs = CreateObject("Scripting.FileSystemObject")
  15.     Set f = fs.GetFolder("e:inetpubwwwrootmrtgpagesYour-Router-Name_here")
  16.     Set fc = f.Files
  17.     For Each f1 in fc
  18. fstr = LCase(f1.name)
  19. If Right(fstr, 8) = "-day.gif"  Then
  20. linklen = Len(fstr)
  21. buffLink = Mid(fstr,1,(linklen - 8))
  22. Response.Write ("<table><tr><td>")
  23. Response.Write("<a href=" & buffLink & ".html>") 
  24. Response.Write ("<img src=" & f1.name & " border=0> ")
  25. Response.write ("</td><td>")
  26. Response.write (bufflink & "<br>")
  27. Response.Write VbCrLf 
  28. Response.write "</td></tr></table>" & VbCrLf
  29. End If
  30.     Next
  31. %>        
  32. </body>
  33. </html>