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
@billymigz22
billymigz22 / excel.asp
Created September 21, 2019 03:48 — forked from patcullen/excel.asp
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;