Is there a way to use an icon hyperlink and set a session
object?

Let's say we have a page with 3 icons. Each icon is a
hyperlink to 3 seperate pages. I would like to link to a
single page and pass a session object value (let's say 1,
2, or 3). The new, single page would read this session
object value and act accordingly.

Currently I use:

<a href="page1.asp>
<img ... src="icon1.gif" ... >
</a>

three times.

I'm sure there's a simple solution ... but I can't figure
it out!

Thanks.

Re: Icon Links and Session Objects by Ray

Ray
Thu Jul 31 10:12:27 CDT 2003

<A href="page1.asp?YourValue=1">img</A>

And then grab that value and do what you will with it.

Ray at work

"GrahamC" <grahamc@inetix.com> wrote in message
news:007501c35770$a8a3b300$a101280a@phx.gbl...
> Is there a way to use an icon hyperlink and set a session
> object?
>
> Let's say we have a page with 3 icons. Each icon is a
> hyperlink to 3 seperate pages. I would like to link to a
> single page and pass a session object value (let's say 1,
> 2, or 3). The new, single page would read this session
> object value and act accordingly.
>
> Currently I use:
>
> <a href="page1.asp>
> <img ... src="icon1.gif" ... >
> </a>
>
> three times.
>
> I'm sure there's a simple solution ... but I can't figure
> it out!
>
> Thanks.