Archive for the ‘ASP’ Category

Sending emails with non ASCII characters from ASP

2006.09.22, Fri

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…)

Serving an Excel Worksheet to a browser.

2006.06.23, Fri

Writing 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.

(more…)

Converting a collection to a JScript object in ASP

2006.03.30, Thu

Enumerators 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…)