본문 바로가기

기타/ASP10

ASP EXCEL 커넥션 스트링https://www.connectionstrings.com/excel/ "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=파일경로;Extended Properties=""Excel 12.0;HDR=YES;IMEX=1;""" https://docs.microsoft.com/en-us/sql/integration-services/load-data-to-from-excel-with-ssis?view=sql-server-2017 Microsoft Office Access Database Engine 오류 '80004005'설치 가능한 ISAM을 찾을 수 없습니다.-> 구문에러였음----문제점1 : xls파일을 불러왔을경우 첫번째 column을 읽어오지 못함 해결 .. 2019. 3. 25.
Classic ASP ZIP압축 Classic ASP에서 파일을 압축할일이 생겨서 찾아봤다.http://xstandard.com/en/documentation/xzip/ XZip.dll 파일을 등록후 적용했더니 작동이 잘된다. 2018-11-19 추가정보- 압축시 한글파일명이 들어갈시 압축이 되지가 않았다.- 단일파일 추가의 경우 한글파일 추가 되지 않았으나 폴더형태로 저장시 저장이 되었다.- 폴더내의 *.* 의 형태로 모두 저장함 2018. 11. 16.
ASP URLDecode FUNCTION URLDecode(str)'// This function:'// - decodes any utf-8 encoded characters into unicode characters eg. (%C3%A5 = å)'// - replaces any plus sign separators with a space character'//'// IMPORTANT:'// Your webpage must use the UTF-8 character set. Easiest method is to use this META tag:'// '// Dim objScript Set objScript = Server.CreateObject("ScriptControl") objScript.Language = "JavaScri.. 2018. 11. 8.
Access-Control-Allow-Origin Access-Control-Allow-OriginASP에서 SSL설치후 Access-Control-Allow-Origin 발생 2018. 11. 2.
Chr(30)의 사용 아스키 코드표에서 30의 경우 record separator로 사용된다.쉽게 생각하면 눈에 보이지 않는 문자라고 보면되겠다.Chr(30)http://www.asciitable.com/ 엑셀 출력을 작성할때00123123 의형태로 출력된다면00의 값이 사라지게된다. 그때 앞쪽에 레코드 세퍼레이터를 넣어서 사라지는걸 방지한다. 2018. 10. 10.
OBJECT RUNAT=server http://www.webmadang.net/develop/develop.do?action=read&boardid=1001&page=2&seq=69 2018. 9. 6.
ADODB Type Library http://taeyo.net/Columns/View.aspx?SEQ=238&PSEQ=16&IDX=7 https://msdn.microsoft.com/en-us/library/ms525469(v=vs.90).aspx http://dooji.tistory.com/56 음 신입 설명용 2018. 9. 6.
request 다중배열형태로 POST로 넘겼을경우5개의 input value는 0,1,2,3,4 추가정보https://www.w3schools.com/asp/asp_ref_request.asp 2018. 5. 23.
FormatDateTime https://www.w3schools.com/asp/func_formatdatetime.aspExampleDisplay a date in different formats:The output of the code above will be:2/16/2010 1:45:00 PM Tuesday, February 16, 2010 2/16/2010 1:45:00 PM 13:45 2010-02-16 오후 1:45:00 2010년 2월 16일 화요일 2010-02-16 오후 1:45:00 13:4518-05-14 12:03 2018. 5. 14.