34 lines
996 B
Plaintext
34 lines
996 B
Plaintext
<%
|
|
|
|
' 페이지정보 *************************************************
|
|
v_page = InputValue(request("p_page"))
|
|
v_block = InputValue(request("p_block"))
|
|
v_search = InputValue(request("p_search"))
|
|
v_keyword = InputValue(request("p_keyword"))
|
|
mode = InputValue(request("mode"))' -- a:관리자페이지 , u:일반유저페이지
|
|
page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword
|
|
' ************************************************************
|
|
|
|
|
|
|
|
|
|
' 권한정보 *************************************************************************************
|
|
is_ad_cms = "Y"
|
|
is_read = "Y"
|
|
is_write = "Y"
|
|
is_delete = "Y"
|
|
is_reply = "Y"
|
|
' **************************************************************************************************
|
|
|
|
|
|
|
|
R_Fields = "poc_idx, poc_topinclude, poc_tophtml, poc_btminclude, poc_btmhtml"
|
|
|
|
R_tablename_str = "poll_conf"
|
|
R_WHERE_str = " WHERE poc_idx=1"
|
|
|
|
Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str)
|
|
|
|
|
|
%>
|