<[EMAIL PROTECTED]> schrieb am 11.01.2006 17:19:30: > Dear All,
> I have a JSP like the following > <html> > <head> > ............. > ............. > </head> > <body> > ................ > ................ > <frameset> > <frame> > ............ > ............ > </frame> > <frame src="a.jsp"> > </frameset> > ............. > ............. > </body> > <html> This is, by the way, not a valid frameset definition. It should look like: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>title</title> </head> <frameset ...> <frame ...> <noframes> <body> alternate text </body> </noframes> </frameset> </html> Regards, Thomas --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]