프로그램 언어 사용 순위 2015-02
TIOBE에서 순위를 학인하면 된다. TIOBE(http://www.tiobe.com/)에서 상단 메뉴중 Paper&Info 메뉴에서 Tiobe Index 를 선택하면 프로그램 언어의 순위를 확인할 수 있다. 미국 프로그램 연봉순위 참조: http://qz.com/298635/these-programming-languages-will-earn-you-the-most-money/
TIOBE에서 순위를 학인하면 된다. TIOBE(http://www.tiobe.com/)에서 상단 메뉴중 Paper&Info 메뉴에서 Tiobe Index 를 선택하면 프로그램 언어의 순위를 확인할 수 있다. 미국 프로그램 연봉순위 참조: http://qz.com/298635/these-programming-languages-will-earn-you-the-most-money/
javascript GIF JPG
1 2 3 4 5 6 7 |
if((document.Frm.file1.value.toUpperCase().lastIndexOf(".JPG")==-1) && (document.Frm.file1.value.toUpperCase().lastIndexOf(".GIF")==-1)) { alert("업로드는 jpg와 gif 파일만 하실수 있습니다.") return false } |
ASP save
단축키라고 하면 복사하기(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
Copyright © 2024 | WordPress Theme by MH Themes