프로그램&DB 썸네일형 리스트형 ASP에서 XML 데이터 불러오기 by Outsider님 현재 풀옵션 게시판을 하나 만들고 있다. 사내사업부 지원용으로 만드는 것으로 혼자만든다는 거에 압박감이 좀 있기는 하지만 원래 초기에는 개인프로젝트로 만들려고 했는데 회의가 오가는 중에 팀내 JOB으로 할당되어서 그동안 DB설계하고 설계했던 것을 그대로 가져다가 만들고 있다. 원래 월말까지 만들라고 했는데 빡시게 해도 빡빡한데 계속된 자른 일로 인하여 지난주에도 한 3일은 날려먹었다... 쩝;;; 어쨌든 게시판 마다 config을 적용하기 위해서 게시판 아이디를 가지고 config을 따로 인클루드 해서 사용할 수 있게 하려는게 애시당초의 계획이었으나 ASP에서 인클루드에 사용하는 저녀석에 변수를 할당할 수가 없었다. 에러가 나는 상황을 보아 서버단의 ASP코드보다도 include가 먼저 실행이 되는 듯 .. 더보기 [ASP 기초 정리] 날짜와 시간 함수 - 황재선님 제공 ASP 기초 정리 - 황재선님 제공 강좌 최초 작성일 : 2000년 x월 x일 강좌 최종 수정일 : 2001년 7월 17일 작성자 : Helios7(황 재선) : http://www.neovis.pe.kr 편집자 : Taeyo(김 태영) 강좌 제목 : ASP 기초 - 날짜와 시간 함수 4.2 날짜와 시간 함수 날짜와 시간에 관련된 내용을 표현하는 함수들도 ASP에서는 중요한 비중을 가진다. 시스템에서 제공하지 못하는 여러 가지 기능들을 이런 함수들을 통해서 구현이 가능하다. 특히 날짜 연산에 대한 코드 작성시 많은 도움을 얻을 수 있는 날짜와 시간 함수들에 대해서 알아보자. 1) CDate Date 하위 형식의 Variant로 변환된 식을 반환한다. 구문 : CDate(date) date 인수는 유효한 .. 더보기 [jquery] checkbox 다루기 1. 개수 구하기 $("input[name=chk1]:checkbox:checked").length ☆☆☆ php에서 배열사용시 ☆☆☆ $("input[name='chk1[]']:checked").length 2. 체크여부 확인 $("#check_all").is(':checked') 3. chk1 개수만큼 돌면서 실행한다 $("input[name=chk1]").each( function (){ // 명령어 } ) 4. each 문돌면서 그값이 참이면 실행하는 문장 var chk2 = $("input[name='chk2[]']"); var i = 0; $("input[name='chk1[]']").each( function(){ if(this.checked){ chk2[i].value = "Y"; }els.. 더보기 [jQuery] jQuery form 전송 $("#폼 아이디").serialize() TYPE 1. $.ajax({ type : "post", url : "menuAction.jsp", data : $("#menuForm").serialize(), success : function(data){alert(data);} }); TYPE 2. $.post( "menuAction.jsp", $("#menuForm").serialize(), function(data){alert(data);} ); TYPE 3. var mode = $(":input:hidden[name=mode]").val(); var menuTitle = $(":input:text[name=menuTitle]").val(); var menuUrl = $(":input:text[name=.. 더보기 [jQuery] radio , select 에서 value 값 가져오기 TEXT $(":input:text[name=이름]").val(); RADIO $(":input:radio[name=이름]:checked").val(); SELECT 선택된 값 읽기 $("#아이디 option:selected").val(); $("select[name=이름]").val(); 선택된 내용 읽기 $("#아이디 option:selected").text(); 선택된 위치 var index = $("#아이디 option").index($("#아이디 option:selected")); [출처] [jQuery] radio , select 에서 value 값 가져오기.|작성자 태지매니아 더보기 PHP Filter 필터 관련 레퍼런스 PHP Filter PHP filters are used to validate and filter data coming from insecure sources, like user input. What is a PHP Filter? A PHP filter is used to validate and filter data coming from insecure sources. To test, validate and filter user input or custom data is an important part of any web application. The PHP filter extension is designed to make data filtering easier and quicker. Why use a .. 더보기 PHP Exception Handling 예외 처리 PHP Exception Handling Exceptions are used to change the normal flow of a script if a specified error occurs What is an Exception With PHP 5 came a new object oriented way of dealing with errors. Exception handling is used to change the normal flow of the code execution if a specified error (exceptional) condition occurs. This condition is called an exception. This is what normally happens when .. 더보기 PHP Error Handling 에러코드 및 대처 예문 PHP Error Handling The default error handling in PHP is very simple. An error message with filename, line number and a message describing the error is sent to the browser. PHP Error Handling When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look very unprofessional and you may be open to security risks. This .. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 23 다음