사용하면 편리한 윈도 단축키 9가지
단축키라고 하면 복사하기(Ctrl + C), 붙여넣기(Ctrl + V), 저장하기(Ctrl + S) 정도로 알고 있는 대부분의 PC 사용자들. 수많은 단축키를 외우기란 쉽지 않다. 하지만 몇 가지 […]
단축키라고 하면 복사하기(Ctrl + C), 붙여넣기(Ctrl + V), 저장하기(Ctrl + S) 정도로 알고 있는 대부분의 PC 사용자들. 수많은 단축키를 외우기란 쉽지 않다. 하지만 몇 가지 […]
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<!-- Make sure the path to CKEditor is correct. --> <script src="./ckeditor/ckeditor.js"></script> <script language="javascript"> function sendit() { //글 내용 var data = CKEDITOR.instances.content.getData(); document.myform.content.value = data; if (trim(document.myform.content.value).length == 0) { alert("글을 작성 안하셨습니다. 글을 작성해 주십시요"); document.myform.content.focus(); return false; } // document.myform.submit(); } </script> <Form name="myform" enctype="multipart/form-data" method="POST" action="./****"> <textarea name="content" id="content" rows="16" cols="56"></textarea> </form> <script> // Replace the <textarea id="content"> with a CKEditor // instance, using default configuration. CKEDITOR.replace( 'content' ); </script> |
바로가기: CKEditor.com | The best web text editor for everyone.
EVENT ID 7062 : DNS 서버가 자신으로 보낼 패킷을 발견했다 해결방법 DNS 서버가 자신으로 보낼 패킷을 발견했습니다 — IP 주소 자체 DNS 서버로 패킷을 보내서는 […]
1. outlook 계정받는 메일이 POP3가 아닌 IMAP 으로 되어 있어야 합니다 2. 도구-> 계정 3. 메일 계정 변경에서 기타설정(M) 4. 탭 폴더 선택후 (*)다음에서 기존 폴더를 […]
다운로드 old version : https://www.soapui.org/downloads/soapui/soapui-os-older-versions.html 세팅 C:\Program Files\SmartBear\SoapUI-5.0.0\bin\SoapUI-5.0.0.vmoptions -Xmx1000m => -Xmx500m 으로 수정 http://www.soapui.org/rest-testing/getting-started.html
v3lite 돌린다.
CTX139623 – Citrix Receiver for Windows 4.1 (14.1.2.3) – Citrix Knowledge Center. windowsXP 에서 Citrix Receiver4.2 버전 지원하지 않습니다. http://support.citrix.com/article/CTX139623 에서 4.1 버전 다운로드 압축푼 […]
Windows 2008에서 IIS 확장자 없는 이미지 또는 파일 다운로드시 파일을 찾을 수 없음으로 나옵 각 사이트나 웹서버의 ‘MIME 형식’ 에서 ‘.*’을 추가 파일 이름 확장명: […]
Server is disabling SSLv3 due to the POODLE security violation (CVE-2014-3566).This vulnerability was recently made known across the IT industry and puts any communications using […]
When I try to print from Internet Explorer nothing prints and the Print Preview page is blank 참조 : http://answers.microsoft.com/en-us/ie/forum/ie8-windows_vista/when-i-try-to-print-from-internet-explorer-nothing/60fa191c-f687-4fdb-878f-2d9aff771acb This issue has actually been […]
Python 홈페이지 : https://www.python.org/
wkhtmltopdf and wkhtmltoimage are open source (LGPL) command line tools to render HTML into PDF 사이트 : http://wkhtmltopdf.org/index.html wkhtmltopdf 를 사용하여 html 을 pdf 로 […]
참조 : http://www.clamav.net/doc/install.html#Debian 참조 : https://auctionpro.co.kr/?p=2511 ubuntu 인스톨 sudo apt-get install clamav 검사 sudo clamscan -r /. 문서다운로드 : clamdoc
참조 : https://www.simple-talk.com/sql/performance/the-except-and-intersect-operators-in-sql-server/ EXCEPT(차집합) INTERSECT(교집합)
** 2008 R2가 아닌 경우 win2008에서 역할 서비스 추가 에서 FTP 서버 말고 다음 사이트에서 다운로드 http://www.iis.net/extensions/FTP 32bit용 다운로드 :ftp7_x86_75 b4bit용 다운로드 : ftp7_x64_75 FPT 기본포트는 […]
해결됨 OpenSSL에서 발생한 메모리 고갈 취약점, 푸들(Poodle, Padding Oracle On Downloaded Legacy Encryption) 취약점 등 총 4개의 취약점을 보완한 보안업데이트를 발표 CVE-2014-3513 : DTLS SRTP […]
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
<% 'option explicit %> <% ' Response.Expires = 0 'ASP 스크립트를 사용하여 캐싱 금지 ' Response.Expiresabsolute = Now() - 1 ' Response.AddHeader "pragma","no-cache" ' Response.AddHeader "cache-control","private" ' Response.CacheControl = "no-cache" Dim Type Dim ID Dim RLOC Type = request.Form("Type") ID = request.Form("ID") RLOC = request.Form("RLOC") HttpPath="http://MyWebSite/my.asmx/WSTL" '------------------------------------------------------------------- Dim lResolve Dim lConnect Dim lSend Dim lReceive Dim sSend sSend="Type="& Type & _ "&ID="& ID & _ "&RLOC="& RLOC 'response.write sSend 'response.end Set XMLhttp = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0") lResolve = 30 * 1000 'Timeout values are in milli-seconds lConnect = 30 * 1000 lSend = 30 * 1000 lReceive = 30 * 1000 XMLhttp.setTimeouts lResolve, lConnect, lSend, lReceive XMLhttp.open "POST",HttpPath, False '------------------------------------------------------------------ XMLhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" XMLhttp.Send sSend Dim sResponse sResponse = XMLhttp.responseText Response.ContentType = "text/xml" response.write sResponse response.end %> |
다음과 같은 에러시 다시시작 다시시작 1.Start –> Run –> Services.msc 2.Right click and Restart Windows Internal Database. 3.Right click and Restart Update Services. 4.Verify […]
Copyright © 2026 | WordPress Theme by MH Themes