How does bean:define work?

2001-08-30 Thread Wittwer Markus
Hi! The bean:define tag simply exposes a bean as a scripting variable by adding it to the page context: // from DefineTag.java pageContext.setAttribute(id, value, inScope); Now one can access the bean by bean:define id=title value=test/ Value of title: %= title % I did the same within a

Re: How does bean:define work?

2001-08-30 Thread Erik Hatcher
with this kind of stuff. Erik - Original Message - From: Wittwer Markus [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 30, 2001 4:35 AM Subject: How does bean:define work? Hi! The bean:define tag simply exposes a bean as a scripting variable by adding it to the page