Hi Denver,
thanks for your answer.
Can you tell my where is the diffent between this code fragments:
1.
&html<<a href="." onclick="#server(..test('1234'))#;return
false;">N</a></div>>
<script language=cache method=test arguments="id:%String" returntype="">
&js<alert(#(id)#)>
QUIT
</script>
2.
<a href="javascript:void(#server(..Test())#)">Test</a>
<script language="cache" method="Test">
&js<alert("Hallo")>
</script>
The first is a part of my CSP.Page the second is the example from you. The
first part doesn't work.
Greetings Frank
"Denver Braughler" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
news:[EMAIL PROTECTED]
> Here is another variation that should work the same.
> The difference is that your browser status bar will show the encrypted
server call when you hover over the link.
>
> <html>
> <head>
> <title>Test href javascript</title>
> </head>
> <body>
> <a href="javascript:void(#server(..Test())#)">Test</a>
>
> <script language="cache" method="Test">
> &js<alert("Hallo")>
> </script>
> </body>
> </html>