CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7

Threaded View

  1. #3
    Join Date
    Jan 2006
    Posts
    293

    Re: hyperlinks between two image folders

    Isnt this just regular old HTML?? You put the thumbnail image into an <img> tag, then wrap that up in a link tag with the link to the larger file...
    Code:
    <a href="http://www.mysite.com/bigimages/big.jpg"><img src="http://www.mysite.com/smallimages/small.jpg" /></a>
    Although it would probably be best to just put them into one folder, and put a prefix or something on the thumbnail....

    myimage.jpg <-- big file
    t_myimage.jpg <--thumbnail
    Last edited by gigemboy; February 23rd, 2006 at 09:18 AM.

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

Featured