If your tag is rendering as
<html:frame src="/Main/Content.do"
frameborder="0"/>
it seems likely that you don't have the taglib definition in your jsp.
-----Original Message-----
From: Ray Madigan [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 12 March 2003 11:35 AM
To: Struts Users Mailing List
Subject: html:frame
can anyone tell me for certain if this is a bug or a problem of mine
I use:
<html:frame src="/Main/Content.do"
marginheight="0" marginwidth="0"
frameborder="0"/>
and the code that gets rendered for the browser is:
<html:frame src="/Main/Content.do"
frameborder="0"/>
and the code in the tag:\ is:
if (marginheight > 0) {
results.append(" marginheight=\"");
results.append(marginheight);
results.append("\"");
}
if (marginwidth > 0) {
results.append(" marginwidth=\"");
results.append(marginwidth);
results.append("\"");
}
Not allowing me to have a zero width margin for my frame.
Thanks
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]