Categories | Question details Back To List | ||
XML Hi This is my generated XML <?xml version='1.0' encoding='iso-8859-1'?> <rows> <head> <column width='92' type='ro' align='center' sort='na'> Base Number </column> <column width='92' type='ro' align='center' sort='na'> Suffix </column> <column width='92' type='ro' align='center' sort='na'> Event Regular Price </column> <column width='92' type='ro' align='center' sort='na'> Event Sale Price </column> </head> <row id='1'> <cell colspan='4'>No Data Found</cell> </cell> </cell> </cell> </row> </rows> I am getting these errors mismatched tag. Expected: </row>. top[0] has no properties where is problem? Answer posted by Support on Apr 17, 2008 08:26 You are using incorrect syntax for short xml tag notation. Instead of </cell> </cell> </cell> the next code need to be used <cell/> <cell/> <cell/> |