On our website I have community meetings page. The office wants users to be able to sort the meetings by city, date or subject. Since I already have this information databased in MS Access 2010 I thought an easy way to do this would be to just run the 3 reports monthly and save them as xml pages and have the web template pull in the data based off which link was clicked. I know I can do conditional ( i.e. if the city link is clicked then pull in meetingsbycity.xml data ), but I don't mind setting up three template pages either.
My questing is how to set up the template page? The xml data is:
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlnsd="urn:schemas-microsoft-comfficedata" generated="2011-11-28T12:34:22">
<qry_meetings>
<ID>1</ID>
<edate>2011-10-06T00:00:00</edate>
<etime>1899-12-30T11:00:00</etime>
<name>Meetingplace</name>
<address>123 Lakeshore Drive East</address>
<city>Ashland</city>
<state>WI</state>
<zip>12345</zip>
<company>Company1</company>
<plantypes>Company Plan1</plantypes>
<firstname>Sales</firstname>
<lastname>Person1</lastname>
</qry_meetings>
I have several dozen meetings to list on the page and I would like them listed in columns down and right when read by the user.
Any help would be appreaciated! Thanks!
My questing is how to set up the template page? The xml data is:
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlnsd="urn:schemas-microsoft-comfficedata" generated="2011-11-28T12:34:22">
<qry_meetings>
<ID>1</ID>
<edate>2011-10-06T00:00:00</edate>
<etime>1899-12-30T11:00:00</etime>
<name>Meetingplace</name>
<address>123 Lakeshore Drive East</address>
<city>Ashland</city>
<state>WI</state>
<zip>12345</zip>
<company>Company1</company>
<plantypes>Company Plan1</plantypes>
<firstname>Sales</firstname>
<lastname>Person1</lastname>
</qry_meetings>
I have several dozen meetings to list on the page and I would like them listed in columns down and right when read by the user.
Any help would be appreaciated! Thanks!