{"id":26154408,"url":"https://github.com/rcdmk/aspxls","last_synced_at":"2026-03-12T14:43:04.214Z","repository":{"id":5513005,"uuid":"6713786","full_name":"rcdmk/aspXls","owner":"rcdmk","description":"A classic ASP Excel reader and writer","archived":false,"fork":false,"pushed_at":"2012-11-16T00:09:51.000Z","size":120,"stargazers_count":14,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-11T08:36:04.484Z","etag":null,"topics":["asp","csv","excel","html","tsv","xls"],"latest_commit_sha":null,"homepage":null,"language":"ASP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rcdmk.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-11-15T23:54:26.000Z","updated_at":"2024-06-25T06:40:41.000Z","dependencies_parsed_at":"2022-07-06T22:11:07.564Z","dependency_job_id":null,"html_url":"https://github.com/rcdmk/aspXls","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/rcdmk/aspXls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcdmk%2FaspXls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcdmk%2FaspXls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcdmk%2FaspXls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcdmk%2FaspXls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rcdmk","download_url":"https://codeload.github.com/rcdmk/aspXls/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rcdmk%2FaspXls/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30428669,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asp","csv","excel","html","tsv","xls"],"created_at":"2025-03-11T08:29:30.897Z","updated_at":"2026-03-12T14:43:04.194Z","avatar_url":"https://github.com/rcdmk.png","language":"ASP","funding_links":[],"categories":[],"sub_categories":[],"readme":"#aspXLS 1.0\n\nA classic ASP Excel writer that currently supports building and writing CSV, TSV (tab separated values)\nand HTML outputing, including a pretty print for HTML.\n\nThere are plans of writing to XLS and XLSX formats in a near future and reading capabilities for each\nof the supported file formats: CSV, TSV, XLS and XLSX.\n\n##License\n\n**The MIT License (MIT) - http://opensource.org/licenses/MIT**\nCopyright (c) 2012 RCDMK \u003crcdmk@rcdmk.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and\nassociated documentation files (the \"Software\"), to deal in the Software without restriction,\nincluding without limitation the rights to use, copy, modify, merge, publish, distribute,\nsublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial\nportions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\nNOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\nDAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT\nOF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\n##Easy to use\n\nInstantiate the class:\n\n    set xls = new aspExl\n\nAdd the header/titles for your structure:\n\t\n    ' Add a header: setHeader(x, value)\n    xls.setHeader 0, \"id\"\n    xls.setHeader 1, \"description\"\n    xls.setHeader 2, \"createdAt\"\n    \nAdd some data:\n\n    ' Add the first data row: setValue(x, y, value)\n    xls.setValue 0, 0, 1\n    xls.setValue 1, 0, \"obj 1\"\n    xls.setValue 2, 0, date()\n    \n    ' Add a range of values at once: setRange(x, y, valuesArray)\n    xls.setRange 0, 2, Array(2, \"obj 2\", #11/25/2012#)\n   \n \n**Easy for outputing:**\n\t\nOutput the data in string formatted values:\n\t\n    outputCSV = xls.toCSV()\n    outputTSV = xls.toTabSeparated()\n    \n    outputHTML = xls.toHtmlTable()\n    \n    xls.prettyPrintHTML = true\n    outputPrettyHTML = xls.toHtmlTable()\n    \n\nOr write it directly to a file:\n\n\t' Write the output to a file: writeToFile(filePath, format)\n\txls.writeToFile(\"c:\\mydata.csv\", ASPXLS_CSV)\n\t\nThe format flags supported are:\n\t\n\tASPXLS_CSV = 1\t' CSV format\n\tASPXLS_TSV = 2\t' Tab separeted format\n    ASPXLS_HTML = 3\t' HTML table format","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frcdmk%2Faspxls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frcdmk%2Faspxls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frcdmk%2Faspxls/lists"}