!) I have a WEB server at home, using Microsoft IIS. On it If I want to display pics on the WEB, I make a directory on that PC in the IIS area, for example “PICS”
You can get to that dir on any browser http://www.AJWEBSERVER.com/PICS (example, this doesn’t work)
When there you can see the jpgs under that dir , click on each pic to see it, then the back button, choose another…what a pain.
So, I wrote some html’s a “A.HTM”
Now you can go http://www.AJWEBSERVER.com/PICS/A.htm
And it brings up a framework with all the pics in thumbnails on the left, click on a thumbnail and it puts a big version in the big frame to the right…much better and faster….
BUT, everytime I do this, I have to go and make a custom htm file, and then rename all my jpgs to fit it….as below:
<TR>
<TD><A HREF="Picture 001.jpg" TARGET="NewPic"><IMG SRC="Picture 001.jpg" width=100 height=80><BR>Picture 001.jpg</IMG></A></TD>
</TR>
<TR>
<TD><A HREF="Picture 002.jpg" TARGET="NewPic"><IMG SRC="Picture 002.jpg" width=100 height=80><BR>Picture 002.jpg</IMG></A></TD>
</TR>
<TR>
<TD><A HREF="Picture 003.jpg" TARGET="NewPic"><IMG SRC="Picture 003.jpg" width=100 height=80><BR>Picture 003.jpg</IMG></A></TD>
</TR>
Then go rename numerous jpg s to Picture 001, 002, 003….and so on….
NOW, my question finally. Isn’t there a way, to skip all this , for example just make a folder, on my WEB server “PICS”,,,,and have some sort of code (my question to you is what is this “some sort of code”?)
After this “some sort of code” is in that directory, I can just copy in all the pictures to that directory, and goto, http://www.AJWEBSERVER.com/PICS and all pics in this directory display in a nice viewable fashion ?
Thanks Much AJ