On this site ( http://entity.blogdns.net/PrintAddressLabel.aspx ) I wrote a pattern for printing address labels and used hereby special signs (German "Umlaute": ö => & ouml ;) which I've not encoded via &signName;. Therefore they were not visible untill I've added the following peramter to Web.config:
<system.web>
.
<globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="iso-8859-15" />
</system.web>
Joe, en-US users didn't need this peramter necessary but the most other cultures need it. Hence you should add this peramter to Web.config with a corresponding comment and the utf-8 enc as default. I could also send you a diff file but I think such changes should be described verbose to understand their intention.