Re: Simple But Irritating problem accesing beans from jsp

2004-09-23 Thread Dinesh Keesara
Hey Grady ... Really Thanks ... I am dying for this since 24 hours ...you proved .. how stupid i am .. anyway thanks On Thu, 23 Sep 2004 23:33:14 -0700, Michael McGrady <[EMAIL PROTECTED]> wrote: > Sorry, I mean: useBean instead of usebean? (My eyesight is not great. > Nerd, you know!) > >

Re: Simple But Irritating problem accesing beans from jsp

2004-09-23 Thread Michael McGrady
Sorry, I mean: useBean instead of usebean? (My eyesight is not great. Nerd, you know!) Michael McGrady Dinesh Keesara wrote: the following code is working perfectly: <[EMAIL PROTECTED] import="com.dinesh.*" %> <% IdCard myidcard=new IdCard();%> <% myidcard.setName("HariKiran"); myidcard.setRoll

Re: Simple But Irritating problem accesing beans from jsp

2004-09-23 Thread Michael McGrady
useBean instead of userbean? Michael McGrady Dinesh Keesara wrote: the following code is working perfectly: <[EMAIL PROTECTED] import="com.dinesh.*" %> <% IdCard myidcard=new IdCard();%> <% myidcard.setName("HariKiran"); myidcard.setRollNo("123"); %> <%=myidcard.getName()%> <%=myidcard.getRollNo()

Simple But Irritating problem accesing beans from jsp

2004-09-23 Thread Dinesh Keesara
the following code is working perfectly: <[EMAIL PROTECTED] import="com.dinesh.*" %> <% IdCard myidcard=new IdCard();%> <% myidcard.setName("HariKiran"); myidcard.setRollNo("123"); %> <%=myidcard.getName()%> <%=myidcard.getRollNo()%> but if i replace it with jsp:usebean tag like this : <[EMAIL