surej ns wrote: > > Hi > > I have created a new template in sample application.i have designed it > with table tag.when I submit .it comes with the folowing error.Can any > oen can tell me how can i use html tags ... > > *Error-Details* > > Form Population Filter could not parse the document due to the > following errors: > > Line 147: attributes construct error > > Line 147: Couldn't find end of Start Tag table line 147 > > Line 149: Entity 'nbsp' not defined > > Line 152: Entity 'nbsp' not defined > > Line 155: Entity 'nbsp' not defined > *Hi!
FormPopulationFilter requires you to write valid (X)HTML-code, because it is rather hard to machine-parse a mishmash of spaghetti-html (ie. opening/closing tag mismatches etc). In XHTML, there is no such entity as  , it's &nbsp (I believe). I'd suggest you use the w3 validator (http://validator.w3.org) to validate your HTML-code and fix any and all errors, warnings or potential problems it notices. Keep in mind that you need a valid doctype -declaration for the documents too. Hope this helps. Cheers, Markus -- Markus Lervik, CTO Necora Systems Oy [EMAIL PROTECTED] +358-9-424 74 801 * _______________________________________________ users mailing list [email protected] http://lists.agavi.org/mailman/listinfo/users
