request = container.REQUEST RESPONSE = request.RESPONSE table_example = """

This is the Header for a Spreadsheet

Data Column 1 Data Column 2 Data Column 3 Data Column 4
Information More info ...  
This colour is from a <font> tag This colour is from a <span> tag ...  
""" RESPONSE.setHeader("Content-type","application/vnd.ms-excel") RESPONSE.setHeader("Content-disposition","attachment;filename=examplespreadsheet.xls") return table_example