Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- javascript 한글입력체크
- xmldom
- 이미지가로길이
- SPLIT
- sql랭킹
- MSSQL보안
- join
- 이미지세로길이
- 인젝션
- VARIABLE
- jdbc driver
- instr
- 한글입력체크
- 자바기초
- injection
- wap
- JavaScript
- sql업데이트
- WML
- tempDB
- sql순위
- 정규식
- asp함수
- update
- array
- inner join
- XML
- VarType
- FileSystemObject
- ERD
Archives
- Today
- Total
목록FileSystemObject (2)
3초기억력
ASP - 특정 페이지 소스 출력 하는 Function
function View_Source(Target_URL) '//파일오브젝트 생성 Set FSO_Open = Server.CreateObject("Scripting.FileSystemObject") '//파일 경로지정 Filepath = Server.Mappath(Target_URL) '//파일 오픈 Set File_Open = FSO_Open.OpenTextFile(Filepath, 1) '//파일 읽고 변수에 값 넣음 Text_FSO = File_Open.ReadAll '//닫기 Set File_Open = nothing Set FSO_Open = nothing '//ASP 파일에서 사용한 특정 캐릭터를 변환(순서 조심) Text_FSO = Replace(Text_FSO, "&", "&") Text_..
플밍_ASP
2009. 2. 13. 11:00
FileSystemObject 이용, 로그남기기(ASP)
set fso = Server.Createobject("Scripting.filesystemobject")result = fso.fileexists("D:\Site_Test\test.txt") if result = true then Set ofile=fso.OpenTextFile("D:\Site_Test\test.txt",8,true) ofile.Writeline "datetime=" & now() ofile.Writeline "------------" ofile.close Set ofile=Nothingend ifSet fso=Nothing%>
플밍_ASP
2008. 11. 12. 10:45