% 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) ' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- Set FSO = Server.CreateObject("Scripting.FileSystemObject") datapath = Server.MapPath("\")&"\data\poll\" If FSO.FolderExists(datapath) = False Then FSO.CreateFolder(datapath) End if Set FSO = nothing ' ------------------------------------------------------------------------------------ %>