<% ' 파라미터정보 ************************************************************************************* idx = InputValue(request("idx")) ' --Pk ' ************************************************************************************************** If idx <> "" then ' --수정상태일때.. ' 레코드필드 R_Fields = "w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, w_chk, subject, content, wdate, mdate, sdate, edate, tot_chk" R_tablename_str = "popup " R_WHERE_str = " WHERE idx="&idx Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) reset_url = "list.asp?"&page_info is_title_str = "팝업 정보 수정" Else ' 새글등록 w_width = "400" w_height = "400" w_top = "0" w_left = "0" ck_chk = "Y" reset_url = "write.asp" is_title_str = "신규 팝업 생성" End If If ck_chk = "" Then v_open = "none" If sdate = "" then sdate_y = Year(now) sdate_m = Month(now) sdate_d = Day(now) else sdate_arr = split(sdate,"-") sdate_y = sdate_arr(0) sdate_m = sdate_arr(1) sdate_d = sdate_arr(2) End if If edate = "" then nm = DateAdd("m",1, now) edate_y = Year(nm) edate_m = month(nm) edate_d = day(nm) else edate_arr = split(edate, "-") edate_y = edate_arr(0) edate_m = edate_arr(1) edate_d = edate_arr(2) End if If Len(MM)=1 Then MM = "0"&MM If Len(DD)=1 Then DD = "0"&DD %>

<%=is_title_str%>

팝업생성 서식 작성
팝업생성 서식
~
가로 pixel  세로 pixel * 픽셀(pixel) 단위만 사용하실 수 있습니다.
상단 pixel  좌측 pixel * 픽셀(pixel) 단위만 사용하실 수 있습니다.
환경설정 tabindex="<%=getTabIndex()%>" />스크롤바사용  tabindex="<%=getTabIndex()%>" />툴바사용  tabindex="<%=getTabIndex()%>" />메뉴바사용  tabindex="<%=getTabIndex()%>" />주소창사용 
쿠키값설정 [다음에 창열지 않기] 사용
<%If ck_chk = "N" then%> <%End if%>
<% session("fck_filepath") = "/data/popup/" '업로드 경로(동적경로를 위해 세션사용) 'response.write session("fck_filepath") Set oFCKeditor = New FCKeditor oFCKeditor.BasePath = "/fckeditor/" oFCKeditor.value = content oFCKeditor.ToolbarSet = "Basic" oFCKeditor.Create "content" %>