Results 1 to 7 of 7

Thread: A link to an image

  1. #1

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    A link to an image

    If I give ubb image tag, like {IMG]something.com/image3324.asp[/IMG]

    Now in the ASP page's coding, I choose from several images in an array list and do a Response.Redirect to that image.

    My question is, will that image show up, or will it be a red X?


    If you haven't understood the question, I can rephrase:

    How did Spetnik do that random image thing in his signature?


  2. #2
    Frenzied Member axion_sa's Avatar
    Join Date
    Jan 2002
    Location
    Joburg, RSA
    Posts
    1,724
    In a file rndImageTest.asp:
    Code:
    <HTML>
    <HEAD>
    	<TITLE>Untitled</TITLE>
    </HEAD>
    <BODY>
    
    <table id = 'testImage'>
    	<tr>
    		<td>
    			<%	Response.Write "<img src=rndImage.asp>"  %>
    		</td>
    	</tr>
    </table>
    
    </BODY>
    </HTML>

    In a file rndImage.asp:
    VB Code:
    1. <%
    2.     Dim arrImages
    3.     Dim arrData
    4.     Dim objStream
    5.    
    6.     ' Load the images
    7.     arrImages = Array("images\firewks1.jpg", "images\firewks2.jpg", "images\firewks3.jpg")
    8.     Randomize
    9.     intRnd = Int(((UBound(arrImages) + 1) * Rnd))
    10.    
    11.     Set objStream = Server.CreateObject("ADODB.Stream")
    12.     With objStream
    13.         .Type = 1 ' adTypeBinary
    14.         .Open
    15.         .LoadFromFile Server.MapPath(arrImages(intRnd))
    16.     End With
    17.     With Response
    18.         .ContentType = "image/jpeg"
    19.         .BinaryWrite objStream.Read
    20.     End With
    21.  
    22.                 Set objStream = Nothing
    23. %>

  3. #3

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Thanks!

  4. #4
    Frenzied Member axion_sa's Avatar
    Join Date
    Jan 2002
    Location
    Joburg, RSA
    Posts
    1,724
    My pleasure

    Any chance for a cash payment?

  5. #5

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Originally posted by axion_sa
    My pleasure

    Any chance for a cash payment?

    How about a big fat joint?

  6. #6
    Frenzied Member axion_sa's Avatar
    Join Date
    Jan 2002
    Location
    Joburg, RSA
    Posts
    1,724
    Lol - thanks, but no thanks

  7. #7
    Addicted Member WALDO's Avatar
    Join Date
    Aug 2002
    Location
    Swing of Prussia, PA
    Posts
    244
    Hey, I'll take one.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width