게시판 본문 ASP, ASP.NET, IIS & Script - Read Only
이런 질문은 되죠? |
---|
작성자: 궁금이
작성일시: 2004-11-22 09:57,
조회수: 848
|
FSO 관련 질문입니다.
안녕하세요. 우선 제가 구현하고자 하는 내용은 다음과 같습니다. 덱스트업로드 컴포넌트로 파일을 업로드 한 후 업로드 된 파일을 FSO로 읽어서 SQL 데이터에 Insert 하는 것입니다. 그래서 다음과 같이 하였습니다. 먼저 파일을 서버에 저장하는 부분 입니다. <% root_dir = Server.MapPath(".") & "\data\" SET uploadform = Server.CreateObject("DEXT.FileUpload") uploadform.DefaultPath = root_dir subject = uploadform("subject") text_file = uploadform("text_file").filename IF text_file <> "" Then file_name = Mid(text_file, InstrRev(text_file, "\") + 1) str_name = Mid(text_file, 1, Instr(text_file, ".") - 1) str_ext = Mid(text_file, Instr(text_file, ".") + 1) str_file_name = str_name & "." & str_ext text_file = Root_Dir & text_file CkFile = uploadform.FileExists(text_file) IF CkFile = True Then i = 2 do while(1) text_file = str_name & "[" & i & "]" & "." & str_ext filepath = uploadform.DefaultPath & text_file if not uploadform.FileExists(filepath) then Exit Do i = i + 1 Loop '다른이름으로 저장 '파일이름[번호].확장자 형식으로 저장됨. 다름이름.. uploadform("text_file").SaveAS filepath ELSEIF CkFile = False Then '파일이름 그대로 저장됨. uploadform("text_file").SaveAS text_file text_file = str_file_name End IF '파일이 조건 저장 END IF SET uploadform = Nothing %> 이렇게 저장을 한 파일을 FSO로 읽어서 디비에 저장하는 부분은 다음과 같습니다. <% SET FSO = Server.CreateObject("Scripting.FileSystemObject") SET textstream = FSO.OpenTextfile(root_dir & text_file) text = textstream.ReadAll Function CheckWord(CheckValue) CheckValue = replace(CheckValue, "&" , "&") CheckValue = Replace(CheckValue,chr(32)," ") CheckValue = replace(CheckValue, "<", "<") CheckValue = replace(CheckValue, ">", ">") CheckValue = replace(CheckValue,chr(13)&chr(10),"<br>") CheckValue = Replace(CheckValue,chr(34),"´") CheckValue = replace(CheckValue, chr(39), "´") CheckWord = Trim(CheckValue) %> 여기에 저장하는 파일들은 HTML 파일을 불러 와서 위와 같이 처리 합니다. 그런데 이때 실제 디비에 저장되는 부분은 <body> 이부분 </body> 만 저장 되어야 합니다. 다른 소스들 다 제거하고 body (<body>는 제외) 안쪽 부분의 소스만 읽어서 저장할수 있나요? |
IP 주소: 61.33.79.10
|
게시물 | ||||
---|---|---|---|---|
849 |
t-MAX [1] |
2004-11-22 | 4,646 | |
848 | 2004-11-22 | 2,675 | ||
847 | 2004-11-22 | 2,626 | ||
궁금이 |
2004-11-22 | 848 | ||
845 | 2004-11-22 | 2,601 | ||
844 |
답변 감사드립니다 [1] |
궁금이 |
2004-11-22 | 743 |
843 | 2004-11-22 | 2,845 | ||
842 |
오마르 |
2004-11-19 | 831 | |
841 | 2004-11-19 | 2,490 | ||
840 |
호이 |
2004-11-18 | 890 | |
839 |
진짜 궁금이 |
2004-11-18 | 728 | |
838 | 2004-11-18 | 2,619 | ||
837 |
진짜 궁금이 |
2004-11-17 | 792 | |
836 | 2004-11-17 | 2,594 | ||
835 |
궁금이 |
2004-11-17 | 782 | |
834 | 2004-11-18 | 2,541 | ||
833 |
진짜 궁금이 |
2004-11-18 | 740 | |
832 |
진짜 궁금이 |
2004-11-17 | 731 | |
831 | 2004-11-17 | 3,188 | ||
830 |
진짜 궁금이 |
2004-11-17 | 771 | |
829 | 2004-11-17 | 2,613 | ||
828 |
진짜 궁금이 |
2004-11-17 | 747 | |
825 |
오마르 |
2004-11-16 | 811 | |
824 | 2004-11-17 | 2,734 | ||
823 | 2004-11-16 | 2,697 |