Re: Using Server Side JSP functions

1999-11-30 Thread Hans Bergsten
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

Re: Using Server Side JSP functions

1999-11-30 Thread Praveen Kumar S .
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

Using Server Side JSP functions

1999-11-30 Thread Masaoud
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