Masaoud wrote:
>
> Hi,
>
> I wish to define a function in my JSP, which executes at the server.
> I tried using
>
>
>
> public String doSomething( String input ) {
> String retVal = new String();
> retVal = input + " hello";
> return retVal;
> }
>
>
>
> The above is similar to an exa
PLS note
this is not a JSP SCRIPT
it is a server side JAVASCRIPT
pls go thro the code again
hope this helps
Amit
> -Original Message-
> From: Masaoud [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, November 30, 1999 4:35 PM
> To: [EMAIL PROTECTED]
> Subject: Using
Hi,
I wish to define a function in my JSP, which executes at the server.
I tried using
public String doSomething( String input ) {
String retVal = new String();
retVal = input + " hello";
return retVal;
}
The above is similar to an example I saw in a book related to JSP.
When I