Skip to content

Instantly share code, notes, and snippets.

View billymigz22's full-sized avatar
🗣️
I may be slow to respond.

billymigz22

🗣️
I may be slow to respond.
View GitHub Profile
@patcullen
patcullen / excel.asp
Created May 27, 2014 06:34
A helper for working with Excel files in classic ASP using JScript
<%
var excel = (function () {
var connection = null;
function open(file) {
connection = Server.createObject('ADODB.Connection');
connection.CommandTimeout = 60;
connection.CursorLocation = 3;