프로그램
-
fckeditor 이미지 파일 크기 제한 (php)프로그램/php 2013. 6. 12. 18:47
1. config 대소문자 주의!! config사용과 이미지 사이즈 제한 변수 설정 경로: fckeditor/editor/filemanager/connectiors/php/config.php $Config['Enabled'] = true ; //false -> true //이미지 파일 사이즈 제한 $Config['MaxImagesize'] = 1024; 2. 파일 사이즈 비교 if구문 추가 경로: fckeditor/editor/filemanager/connectiors/php/commands.php / if ( isset( $Config['SecureImageUploads'] ) ) 라인에 //이미지 파일 사이즈 제한 if ( isset( $Config['SecureImageUploads'] ) ) { ..
-
[asp]현재 날짜 시간 요일 (formatdatetime,now)프로그램/asp 2013. 4. 27. 19:15
nowdate = date() & " " & formatdatetime(now(), 4)&":"&second(now()) function getDay(val) dayName = "" select case(val) case 1 dayName = "일" case 2 dayName = "월" case 3 dayName = "화" case 4 dayName = "수" case 5 dayName = "목" case 6 dayName = "금" case 7 dayName = "토" end select getDay = dayName end function response.write nowdate & "[" & getDay(weekDay(nowdate)) &"]"
-
[asp]정규식 패턴, regexp프로그램/asp 2013. 4. 27. 18:32
asp가 오래되었지만 이러한 정규식도 있고 좋네요! '정규식 패턴 pattern = "[^-가-힣a-zA-Z0-9_\s/]" flag = Word_check(fileStr,pattern) Function Word_check(str,patrn) Dim regEx, match, matches SET regEx = New RegExp regEx.Pattern = patrn ' 패턴을 설정합니다. regEx.IgnoreCase = True ' 대/소문자를 구분하지 않도록 합니다. regEx.Global = True ' 전체 문자열을 검색하도록 설정합니다. SET Matches = regEx.Execute(str) if 0 < Matches.count then Word_check = true Else Word_c..
-
[asp]form 값 post,get 한꺼번에 확인하기프로그램/asp 2013. 4. 27. 18:06
get form 모두 확인 for each item in request.querystring for i = 0 to request.querystring(item).count response.write item & " " response.write request.querystring(item)(i) & " " next next post form 모두 확인 for each item in request.form response.write item & " : " & request.form(item) & " " next
-
[asp]타입확인 varType (typeOf)프로그램/asp 2013. 4. 27. 17:28
변수의 타입을 검사하는 함수 typeOf와 같은 함수이구요. 결과값은 아래와 같은 값을 뱉어 내는군요. ex) 8 2 CONSTANT VALUE DESCRIPTION VBEmpty 0 Uninitialized VBNull 1 Contains no valid data VBInteger 2 Integer subtype VBLong 3 Long subtype VBSingle 4 Single subtype VBDouble 5 Double subtype VBCurrency 6 Currency subtype VBDate 7 Date subtype VBString 8 String subtype VBObject 9 Object VBError 10 Error subtype VBBoolean 11 Boolean subty..