SV: Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
then you can't pass scriptlets to your taglib in the name attribute. -Original Message- From: Claus Jul Larsen [mailto:[EMAIL PROTECTED]] Sent: Monday, October 01, 2001 9:28 AM To: '[EMAIL PROTECTED]' Subject: SV: Request:equalsParameter Hi

SV: Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
the tag. Then use an <%= %> scriptlet as the parameter to your taglib. Example: FROM: " . . . TO: <%-- Default is the page %--> " . . . Yes I know this seems messy but I think it should work as long as the rtexprvalue parameter for equalsParameter is turned on.

SV: Request:equalsParameter

2001-10-01 Thread Claus Jul Larsen
Yes, It seem to be the correct reply but the attribute must be the value from a sql record: select id,sygdom from tblData5 where status=1 " value="false"> "> " value="true"> I want to check the value of req.equalsparameter with the value of the db-row's id - how? I cannot use tags in

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