Hi,
I am trying to create a link between two pages passing the name of the picture. The linked page will then display the picture. The first page has the following code:
<A HREF="picture1.html?pic=party001.jpeg"><IMG HSPACE=20 SRC="partypictures/Party001tn.JPG"> </A>
and the linked page has the following code:
<center>
<% DIM Picture As String
DIM PicSrce1 As String = "partypictures/"
DIM PicSrce2 As String
Picture = Request.QueryString("pic")
PicSrce2 = PicSrce1 & Picture
%>
<H1>Harp, Sarah and Reuben's Party</H1>
<IMG SRC=PicSrce2> <BR />
<A HREF="party.html">Back</A> <A HREF="index.html">Home</A>
</center>
But I cannot get it to work. Any suggestions.
Thanks for the help.
Harp