RE: JSP getProperty issue - does not return data

2000-11-06 Thread Toby Piper
ng tag. <% profile.getAccount %> <% proto.Address addrs = profile.loadAddresses("18190"); addrsProfile = addrs; %> > -Original Message- > From: Dan Lovell [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 06, 2000 11:22 AM > To: [EMAIL PROTECTED] > Su

Re: JSP getProperty issue - does not return data

2000-11-06 Thread Dan Lovell
Here are my two beans: Profile: package proto; import java.util.*; import java.sql.*; public class Profile { private String account; public Profile() { super(); } public Profile ( String account ) { super(); } public void setAccount(String account){ this.account = account; } publ

RE: JSP getProperty issue - does not return data

2000-11-06 Thread Toby Piper
get/set work fine for me. If I take your code/notes literally then you are outputting the JSP tags instead of actually executing them. However if this is your actual code then it looks Ok. You might try putting the useBean tag before any HTML tags - however I don't think that's supposed to matte