Question
Webject jsp
So, I have an embedded webject and am getting tripped up on the where
clause syntax. So......
<ie:param name="where"<br"/>data="(number=$(@FORM[]searchBox[0]))"/>
Returns proper results (searchBox is the Form textbox name parameter).
<%
String myStr = "<string to=" test=">";
%>
.....
<ie:param name="where"<br"/>data="(name='<%=myStr%>')"/>
Returns nothing. And
<%
String myStr = "<string to=" test=">";
%>
.....
<ie:param name="where"<br"/>data="(name=<%=myStr%>)"/>
Returns invalid where clause syntax (note the last drops the single
quotes). So, while I could use javascript, etc. to make some
modifications (if needed), why am I not able to use the "<%= %>" jsp
syntax to properly execute a search? I remember some jsp syntax being
unacceptable in ie but I think it was syntax jsp deprecated.
Thoughts, all?
Brian Krieger
PS: Sorry if this is a simpleton question.......
clause syntax. So......
<ie:param name="where"<br"/>data="(number=$(@FORM[]searchBox[0]))"/>
Returns proper results (searchBox is the Form textbox name parameter).
<%
String myStr = "<string to=" test=">";
%>
.....
<ie:param name="where"<br"/>data="(name='<%=myStr%>')"/>
Returns nothing. And
<%
String myStr = "<string to=" test=">";
%>
.....
<ie:param name="where"<br"/>data="(name=<%=myStr%>)"/>
Returns invalid where clause syntax (note the last drops the single
quotes). So, while I could use javascript, etc. to make some
modifications (if needed), why am I not able to use the "<%= %>" jsp
syntax to properly execute a search? I remember some jsp syntax being
unacceptable in ie but I think it was syntax jsp deprecated.
Thoughts, all?
Brian Krieger
PS: Sorry if this is a simpleton question.......

