%
'function InputValue($strvalue) '변수필터
'function InputValue2($strvalue) '변수필터2
'Function InputValue3($CheckValue)'변수필터3
'function InputValue4($strvalue) '변수필터4
'function getTextmode($strvalue) '텍스트모드로 변환
'function mnai ($ssn) '나이구하는 함수
'function no_cache() '캐쉬제거
'function FolderCreate($strDir) '폴더검사후 없으면 생성
'function page($url) '페이지
'function page2(url) '페이지2
'function trmouseover(clr) '
마우스오버시색상적용
'function title_str2(str,w,help) '타이틀2
'function popup_view() '팝업띄우기
'function remove_tags( str ) '태그삭제
'function StringToHTML( str, max, br ) '지정한 폭(max)만큼 문자열 조절 (한글을 2바이트로 인식)
'sub loding(st,strlink) '처리완료
'function isdir(strDirectory) '폴더 유무확인
'function wfile(filedname, maxMbyte, strDirectory) '업로드파일저장하기(dext버젼)
'function wfile2(filedname, maxMbyte, strDirectory, ext) '업로드파일저장하기(dext버젼) ->제한파일추가
'function cfile(filedname,strDirectory1,strDirectory) '파일복사
'function dfile(strpath) '파일삭제
'function get_lastdate(m_id) '마지막접속시간정보구하기
'function get_FileName1(filename) '파일확장자 이미지
'function get_name(m_id) '회원이름찾기
'sub input_type(iptype,ip_name,ip_value,size,maxlength,ip_aciton) 'input 관리
'function bbs_tablename_str(a_num) '게시판테이블명 알아내기
'function bbs_bbsname_str(a_num) ' 게시판 명알아내기
'function countTotal2()'전체접속통계
'function countToday2() '오늘접속통계
'Function Back_back(message) 'history.go(-1)
'Function Back_back2(message, url) 'location.href
'Function Back_back3(message, url) 'top.location.href
'Function Sung_gong(message) 'message->window.close()
'Function Sung_gong2(message, url) 'message->location.href ->(opener.location.reload())
'Function Sung_gong3(message) 'message->window.close() ->(opener.location.reload())
'Function ChkValSelect(ByVal value1, ByVal value2) '셀렉트버튼
'Function ChkValChkBox(ByVal value1, ByVal value2) '체크박스
'Function ChkValChkBox2(ByVal value1, ByVal value2) '체크박스2
'Function sendMail(from_add, to_add, cc, bcc, subject, body) 메일보내기
'Function sendMail2(from_add, to_add, cc, bcc, subject, body) '메일보내기2
'function get_idx_add() 'idx 자동생성.
'Function GetImageSize(Virtual_Image_Path) '이미지크기 (전체)
'Function GetImageSize_w(Virtual_Image_Path) '이미지크기 (가로)
'Function GetImageSize_h(Virtual_Image_Path) '이미지크기 (세로)
'function ViewCreate() '통합게시판 view
'function TabIndex() '자동인덱스
'function manager_leftmenu() '관리자 페이지 좌측메뉴
'************** Information ****************************************
' Program Title : 문자열처리구문1
' Company :
' Creator : 윤 종 우 2004. 03. 05
' Update : 2008. 11
'*********************************************************************
function InputValue(strvalue)
strvalue = trim(strvalue)
strvalue = replace(strvalue, "&", "&")
strvalue = replace(strvalue, "<", "<")
strvalue = replace(strvalue, ">", ">")
strvalue = replace(strvalue, "'", "'")
strvalue = replace(strvalue, chr(34), """)
strvalue = replace(strvalue, """", """)
InputValue = strvalue
End function
'************** Information ****************************************
' Program Title : 문자열처리구문2
' Company :
' Creator : 윤 종 우 2004. 03. 05
' Update : 2008. 11
'*********************************************************************
function InputValue2(strvalue)
' strvalue = Replace(strvalue," ","")
strvalue = Replace(strvalue,"'","''")
strvalue = Replace(strvalue, "", "")
strvalue = Replace(strvalue, "", "")
InputValue2 = strvalue
End Function
Function InputValue3(CheckValue)
CheckValue = replace(CheckValue, "&" , "&")
CheckValue = replace(CheckValue, "<", "<")
CheckValue = replace(CheckValue, ">", ">")
CheckValue = replace(CheckValue, "'", "`")
CheckValue = replace(CheckValue, " ", " ")
InputValue3 = CheckValue
End Function
'************** Information ****************************************
' Program Title : 문자열처리구문4
' Company :
' Creator : 2006. 3. 14
'*********************************************************************
function InputValue4(strvalue)
strvalue = trim(strvalue)
strvalue = Replace(strvalue,"'","''")
InputValue4 = strvalue
End Function
'************** Information ****************************************
' Program Title : 텍스트모드
' Company :
' Creator : 윤 종 우 2004. 03. 05
'*********************************************************************
function getTextmode(strvalue)
if strvalue <> "" or not isnull(strvalue) then
strvalue=Replace(strvalue, "<" , "<")
strvalue=Replace(strvalue, ">" , ">")
strvalue=Replace(strvalue,chr(13),"
")
strvalue=Replace(strvalue," "," ")
strvalue=Replace(strvalue,"\t"," ")
end If
getTextmode = strvalue
end Function
function InputValue77(strvalue)
strvalue = replace(strvalue, " ", "")
strvalue = replace(strvalue, "'", "")
strvalue = replace(strvalue, "<", "<")
strvalue = replace(strvalue, ">", ">")
strvalue = replace(strvalue, "", "")
strvalue = replace(strvalue, "", "")
strvalue = replace(strvalue, """, """")
InputValue77 = strvalue
End function
function InputValueXSS(strvalue)
strvalue = remove_tags( strvalue )
strvalue = replace(strvalue, ""
Response.write "