Editor [FCKEditor 2.3] [ASP] 실전 매뉴얼
페이지 정보
본문
### write.asp
<form name="form" method="post" action="write_ok.asp" ENCTYPE="MULTIPART/FORM-DATA">
<table border="0" cellpadding="0" cellspacing="0">
<!--#include virtual="/FCKeditor/fckeditor.asp" -->
<tr>
<td>작성자</td>
<td><input name="name" type="text"></td>
</tr>
<tr>
<td>제목</td>
<td><input name="title" type="text" value="<%=Server.HTMLEncode( Request.Form(title) )%>"></td>
</tr>
<tr>
<td>내용</td>
<td>
<!--#include virtual="/FCKeditor/fckeditor.asp" -->
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Create "content"
oFCKeditor.Width = 650
oFCKeditor.Height = 400
%></td>
</tr>
<tr><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
### edit.asp
<%
searcha = request("searcha")
searchb = request("searchb")
GotoPage = Request("GotoPage")
uid = request("uid")
idx = request("idx")
sql = "select title,content,name,email,pwd from tb_pds where idx="&request("idx")
set rs=db.execute(sql)
%>
<form name="form" method="post" action="edit_ok.asp" ENCTYPE="MULTIPART/FORM-DATA">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>작성자</td>
<td><input name="name" type="text" value="<%=Server.HTMLEncode( rs("name") )%>"></td>
</tr>
<tr>
<td>제목</td>
<td><input name="title" type="text" value="<%=Server.HTMLEncode( rs("title") )%>"></td>
</tr>
<tr>
<td>내용</td>
<td>
<!--#include virtual="/FCKeditor/fckeditor.asp" -->
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Width = 650
oFCKeditor.Height = 400
oFCKeditor.value = rs("content")
oFCKeditor.Create "content"
%></td>
</tr>
<tr><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
◆ FCKeditor 값 전송시 처리방법
replace함수를 써서 " -> ' 으로 변환한다.
content = replace(Request.Form("FCKeditor1"),"""","'")
ps) FCKeditor는 입력값이 html변환시 내용중 "은 "로 변환되어 전송받은 페이지에서 정상적으로 보여지나, 입력값중에 태그에 의해 자동생기는 "은 전송받은 페이지에서 그대로 넘겨받아 해당페이지의 태그 속성값과 충돌이 생겨 깨진다. 이를 위해 넘기는 "은 '으로 변환한다.
◆ 전송받은 페이지에서 한글깨짐 처리방법
[%@ CodePage='949' Language="VBScript"%] 삽입
참조사이트
http://tong.nate.com/kwangsuya/34447055
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=967
<form name="form" method="post" action="write_ok.asp" ENCTYPE="MULTIPART/FORM-DATA">
<table border="0" cellpadding="0" cellspacing="0">
<!--#include virtual="/FCKeditor/fckeditor.asp" -->
<tr>
<td>작성자</td>
<td><input name="name" type="text"></td>
</tr>
<tr>
<td>제목</td>
<td><input name="title" type="text" value="<%=Server.HTMLEncode( Request.Form(title) )%>"></td>
</tr>
<tr>
<td>내용</td>
<td>
<!--#include virtual="/FCKeditor/fckeditor.asp" -->
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Create "content"
oFCKeditor.Width = 650
oFCKeditor.Height = 400
%></td>
</tr>
<tr><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
### edit.asp
<%
searcha = request("searcha")
searchb = request("searchb")
GotoPage = Request("GotoPage")
uid = request("uid")
idx = request("idx")
sql = "select title,content,name,email,pwd from tb_pds where idx="&request("idx")
set rs=db.execute(sql)
%>
<form name="form" method="post" action="edit_ok.asp" ENCTYPE="MULTIPART/FORM-DATA">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>작성자</td>
<td><input name="name" type="text" value="<%=Server.HTMLEncode( rs("name") )%>"></td>
</tr>
<tr>
<td>제목</td>
<td><input name="title" type="text" value="<%=Server.HTMLEncode( rs("title") )%>"></td>
</tr>
<tr>
<td>내용</td>
<td>
<!--#include virtual="/FCKeditor/fckeditor.asp" -->
<%
Dim oFCKeditor
Set oFCKeditor = New FCKeditor
oFCKeditor.BasePath = "/FCKeditor/"
oFCKeditor.Width = 650
oFCKeditor.Height = 400
oFCKeditor.value = rs("content")
oFCKeditor.Create "content"
%></td>
</tr>
<tr><td><input type="submit" value="Submit"></td></tr>
</table>
</form>
◆ FCKeditor 값 전송시 처리방법
replace함수를 써서 " -> ' 으로 변환한다.
content = replace(Request.Form("FCKeditor1"),"""","'")
ps) FCKeditor는 입력값이 html변환시 내용중 "은 "로 변환되어 전송받은 페이지에서 정상적으로 보여지나, 입력값중에 태그에 의해 자동생기는 "은 전송받은 페이지에서 그대로 넘겨받아 해당페이지의 태그 속성값과 충돌이 생겨 깨진다. 이를 위해 넘기는 "은 '으로 변환한다.
◆ 전송받은 페이지에서 한글깨짐 처리방법
[%@ CodePage='949' Language="VBScript"%] 삽입
참조사이트
http://tong.nate.com/kwangsuya/34447055
https://www.happyjung.com/bbs/board.php?bo_table=lecture&wr_id=967
댓글목록
등록된 댓글이 없습니다.