기본 콘텐츠로 건너뛰기

글

2018의 게시물 표시

Classic ASP에서 HTML 데이터를 PDF로 만들어 보자

Classic ASP를 이용하여 HTML 데이터를 PDF로 만들어 보자  테스트 환경은 WINDOWS 7, IIS7.5 입니다. [준비물] html2pdf 다운로드 : https://wkhtmltopdf.org/ 에서 OS에 맞는 SW를 다운로드한다. 1. IIS(인터넷 정보 서비스) 관리자를 실행하여 새로운 사이트를 하나 생성한다.    생성할 디렉터리와 파일은 다음처럼 생성한다.    Root-----html2pdf(folder)                     |-----html2pdf.asp                     |-----html2pdf_pr.asp                     |-----convert(folder) 2. html2pdf.asp 를 만든다. <html lang="en"> <head> <title>html2pdf demo</pre> <script src="/js/jquery.js" type="text/javascript"> <script src="/js/jquery.form.js" type="text/javascript"> <script type="text/javascript"> function save() { var input...

Flutter 개발환경 세팅하기(windows 기준)

준비사항 - Windows 7 이상 - JDK 1.8 - Git : version 2.19.1.windows.1 - Andorid studio - Vscode - Flutter SDK : v0.9.4-beta Windows - Power shell 5.0 이상 설치 필요 - 버전 확인 : Power shell 실행후 $PSVersionTable 입력 후 엔터 - Link : https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-windows-powershell#upgrading-existing-windows-powershell JDK 설치 - 버전 1.8 이상으로 설치한다. - Link : http://www.oracle.com/technetwork/java/javase/downloads/index.html Git 설치 - Link : https://gitforwindows.org/ Android Studio 설치 - Link : https://developer.android.com/studio/index.html VSCODE 설치 - Link : https://code.visualstudio.com/Download Flutter SDK 설치 - Link : https://flutter.io - flutter console 배치파일을 실행 후 flutter doctor 실행 - 실행결과에 X가 없을 때까지 조치한다. - >flutter doctor --android-licenses VSCODE 환경설정  - 보기>명령 팔레트 클릭 - View->Command Palette...->Extentions : Install Extensions 입력 설치 - View->Command Palette...->Dart 로 검색후 맨위에 나오는 Dart Code 설치 -...