To have an ASP page send an email with non-ASCII European text (Cyrillic, Greek, Czech, etc) you’ll need to use UTF-8. (more…)
Archive for the ‘ASP’ Category
Sending emails with non ASCII characters from ASP
2006.09.22, FriServing an Excel Worksheet to a browser.
2006.06.23, FriWriting an excel worksheet to a browser is pretty simple – all you need is the correct response type, and to format the data using an HTML table.
Converting a collection to a JScript object in ASP
2006.03.30, ThuEnumerators are collections of data that can be iterated through. Although useful, they are not compliant with ECMAScript standards, and therefore I prefer not to use them. Some objects in the ASP environment however, such as Request.Form, are provided as Enumerators, and need to be converted them to standard JScript objects. Here's a couple of routines to do so.
(more…)