Select Case i
Case "1"
response.write "<img src=http://www.13778.com/images/1.gif>" '换成自己的路径
Case "2"
response.write "<img src=http://www.13778.com/images/2.gif>"
Case "3"
response.write "<img src=http://www.13778.com/images/3.gif>"
Case "4"
response.write "<img src=http://www.13778.com/images/4.gif>"
Case "5"
response.write "<img src=http://www.13778.com/images/5.gif>"
Case Else
response.write "<img src=http://www.13778.com/images/1.gif>"
End Select
%>
Select Case i
Case "1"
response.write "http://www.13778.com/images/1.gif" '换成自己的路径
Case "2"
response.write "http://www.13778.com/images/2.gif"
Case "3"
response.write "http://www.13778.com/images/3.gif"
Case "4"
response.write "http://www.13778.com/images/4.gif"
Case "5"
response.write "http://www.13778.com/images/5.gif"
Case Else
response.write "http://www.13778.com/images/1.gif"
End Select
%>