How to access a JAVASCRIPT method within JSP

2000-01-17 Thread Veena
Hi all   can i access a javascript method within jsp...   what i mean to say is can i do something like this.. the code below is not workingSo is there any alternative to do this..   code is as follows...   <%! int x=10; %><%! int y=20; %><%! int z; %><% z=ad

Re: How to access a JAVASCRIPT method within JSP

2000-01-17 Thread Huynh, Mai
nday, January 17, 1999 8:40 AM To: [EMAIL PROTECTED] Subject: How to access a JAVASCRIPT method within JSP Hi all can i access a javascript method within jsp... what i mean to say is can i do something like this.. the code below is not workingSo is there any alternative to do this

Re: How to access a JAVASCRIPT method within JSP

2000-01-17 Thread Cory L Hubert
om: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of VeenaSent: Sunday, January 17, 1999 8:40 AMTo: [EMAIL PROTECTED]Subject: How to access a JAVASCRIPT method within JSP Hi all   can i access a javascript method within

Re: How to access a JAVASCRIPT method within JSP

2000-01-17 Thread Stephen Summerfield
-Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Veena >can i access a javascript method within jsp... Simple answer is no. JSP is server-side only, the ... tags are client-side (browser) only.

Re: How to access a JAVASCRIPT method within JSP

2000-01-18 Thread Dmitri Namiot
>can i access a javascript method within jsp... one of solutions you can see at http://coldjava.hypermart.net J2J servlet lets you call server side java from JavaScript ColdJava: java server side programming http://coldjava.hypermart.net _