SV: Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
-- Fra: Mader, Steve [mailto:[EMAIL PROTECTED]] Sendt: 1. oktober 2001 16:35 Til: '[EMAIL PROTECTED]' Emne: RE: Request:equalsParameter Check the tld for the equalsParameter taglib and ensure that rtexprvalue element is turned on for the 'name' attribute. It should

RE: Request:equalsParameter

2001-10-01 Thread Mader, Steve
ECTED]] Sent: Monday, October 01, 2001 9:28 AM To: '[EMAIL PROTECTED]' Subject: SV: Request:equalsParameter Hi select id,sygdom from tblData5 where status=1 <%= request.getAttribute

SV: Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
ddelelse- Fra: Mader, Steve [mailto:[EMAIL PROTECTED]] Sendt: 1. oktober 2001 14:49 Til: '[EMAIL PROTECTED]' Emne: RE: Request:equalsParameter I've had the same issue with a different taglib. You can first place the value into an attribute using the 'to' parameter of

RE: Request:equalsParameter

2001-10-01 Thread Mader, Steve
" . . . Yes I know this seems messy but I think it should work as long as the rtexprvalue parameter for equalsParameter is turned on. -Original Message- From: Claus Jul Larsen [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 7:18 AM To: '[EMAIL PROTECTED]' Subject

SV: Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
of the db-row's id - how? I cannot use tags into an attribute huh? Claus from Denmark -Oprindelig meddelelse- Fra: Stephen Latter [mailto:[EMAIL PROTECTED]] Sendt: 1. oktober 2001 13:16 Til: [EMAIL PROTECTED] Emne: re: Request:equalsParameter > > snip!... > Doesn'

re: Request:equalsParameter

2001-10-01 Thread Stephen Latter
> > snip!... > Doesn't work! Have you set the attribute for that tag-lib to allow run time expression values so that the <%= id %> bit actually get converted? In the TLD for the tag-lib you need to specify that a particular tag attribute can accept expressions as well as straight values.

Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
<% int id; if (request.getParameter("id") != null) { id = Integer.parseInt(request.getParameter("id")); } %> "> Doesn't work! How to insert a parameter from the URL-string to the req.equalsParameter as attribute? Claus