Having problems....

1999-06-07 Thread Karl Morley
Hello All, I am experimenting with Java Server Pages, I have problems running the JSPSamples and receive the following error, any help with be appreciated. (My current configuration is below) http://localhost:8080/examples/jsp/num/numguess.jsp Unhandled error! You might want to consider havin

Re: Having problems....

1999-06-07 Thread Karl Morley
Title: RE: Having problems Many thanks to everyone for there help... -Original Message-From: Ilan Amar [mailto:[EMAIL PROTECTED]]Sent: Monday, June 07, 1999 8:52 AMTo: '[EMAIL PROTECTED]'Subject: RE: Having problems Hi, You should add a

Newbie having problems with imports

1999-07-22 Thread DAVE TOWNSEND
I've only just subscribed to this group, so forgive me if this has been answered before (is there a archive anywhere?). I'm having problems with import classes into my jsp page, for example: <%@ page import="java.sql.Connection" /> Example Pa

Re: Newbie having problems with imports

1999-07-22 Thread Primož Hrvatin
rchive anywhere?). > > I'm having problems with import classes into my jsp page, for > example: > > <%@ page import="java.sql.Connection" /> > > > > Example Page > > > > <% Connection dbConn = > java.sql.DriverManager.getCon

Having problems retrieving data from fields/variables in my JSP!

2001-03-08 Thread Sello Mathibe
Hi! Whenever I have something like this: with the function defined below in Javascript: function daycalc(){ document.myform.daysVac.value=document.applets[0].calcNoOfDays(document.myfo rm.vacFrom.value,document.myform.vacTo.value); } Now whenever I submit, the 'daysVac' is not set in the

Re: Having problems retrieving data from fields/variables in myJSP!

2001-03-08 Thread Sripada Srinivas
Hi, I want to check this syntax once again. I think it should have been " /> Do check this. Regards, Sripada Mayuresh Kadu wrote: > if u want to to be able to set the value of "daysVac" in the form to that in > the bean then u will have to write a "get" and "set" methods for the same in >

Re: Having problems retrieving data from fields/variables in my JSP!

2001-03-08 Thread Ramalingam Saravanan
hi sello, It seems that you are trying to assign the value of the parameter named "daysVac" to a property of the bean by the same name. Then you need to correct the setProperty tag as follows: Saravanan R Hi! Whenever I have something like this: with the function defined below in Javascri

Re: Having problems retrieving data from fields/variables in my JSP!

2001-03-08 Thread Mayuresh Kadu
if u want to to be able to set the value of "daysVac" in the form to that in the bean then u will have to write a "get" and "set" methods for the same in the bean and it will be done automatically for ya. Something like the following : public class MyBean { private int m_daysVac = 0;

Re: Having problems retrieving data from fields/variables in my J SP!

2001-03-08 Thread Sello Mathibe
Hi Saravanan R. It is not working, I still get nothing. I think the problem is with my request. But I don't know how it works really! -Original Message- From: Ramalingam Saravanan [mailto:[EMAIL PROTECTED]] Sent: 08 March 2001 01:37 To: [EMAIL PROTECTED] Subject: Re: Having pro