Koen Segers <KoenSegers <at> scarlet.be> writes: > > Is it possible to tell tapestry to generate valid html? > > When I try to validate my webpage, I always get error messages in form > fields. > Stupid error messages like /> where the / isn't allowed...
Are you sure about that? The validator is happy with <input.../> such as: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title>xxx</title> </head> <body> <form name="myform" action="bar"> <p><input type="text" name="foo"/> </form> </body> </html> In contrast, if you omit the <p> before <input>, then it will be an error. So, this is your original html code that is invalid, not Tapestry. -- Author of e-book on Tapestry (http://agileskills2.org/EWDT) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
