Jean
|
| Posted: 08/07/2002, 6:50 PM |
|
Hi,
Is it possible to set a value in session variable during the clicking of a
hyperlink ? I have a aspx page that will retrieve the data from database
based on the current value in session variable.
Thanks
Jean
|
|
|
 |
Shawn Mason
|
| Posted: 08/08/2002, 5:56 PM |
|
Yes, just make the hyperlink an "onclick" versus an "href". The onclick
would point to a javascript function so you can what you need there.
--
Kindest Regards,
Shawn Mason,CCD,MCP
I.S. Software Design Associates
"Jean" <jhsi@attbi.com> wrote in message
news:aisip8$hoe$1@news.codecharge.com...
> Hi,
>
> Is it possible to set a value in session variable during the clicking of a
> hyperlink ? I have a aspx page that will retrieve the data from database
> based on the current value in session variable.
>
> Thanks
>
> Jean
>
>
>
>
>
>
|
|
|
 |
jschultz
|
| Posted: 08/16/2002, 5:46 AM |
|
jean,
or you can do both:
<A ' href='whatever.html' onClick = "yourFunc(variable)">text here</a>
jim
"Jean" <jhsi@attbi.com> wrote in message
news:aisip8$hoe$1@news.codecharge.com...
> Hi,
>
> Is it possible to set a value in session variable during the clicking of a
> hyperlink ? I have a aspx page that will retrieve the data from database
> based on the current value in session variable.
>
> Thanks
>
> Jean
>
>
>
>
>
>
|
|
|
 |
|