On Wed, 23 May 2001, Steven Leija wrote:

> Hello All,
> 
> Can anyone help me with this problem?  I'm trying to have a link open
> up a custom browser window using a struts html:link tag, but I'm
> getting a Non-matching extension tags error.  Here is my code:
> 
> <html:link href="window.open("/title.do" + "?MOVIEID=<%=MOVIEID%>",
> "title", "fullscreen=no, toolbar=no, status=no, menubar=no,
> scrollbars=no, resizable=no, directories=no, location=no, width=550,
> height=350, left=200, top=200")"><%=TITLE%></html:link>
> 

Your problem is that the parser can't figure out which quotation marks are
which, since you're using them both around and within the href
attribute.  Try switching to single quotes
(href='window.open...') instead.

> Thanks in advance!  
> 
> Have a good one.
> 
> Steven
> 

Craig


Reply via email to