<% Sub SubMain(ByRef objQuery) Call SubContent(objQuery) End Sub Sub SubContent(ByRef objQuery) Dim BBS_Category BBS_Category = Trim(Request("BBS_Category")) Dim sLeftTitleImg, sTitleImg Dim subMenu subMenu = Trim(Request("subMenu")) Select Case subMenu Case "M1" sLeftTitleImg = "" sTitleImg = "title1_2.gif" Case "M5" sLeftTitleImg = "" IF BBS_Category = "qna" Then sTitleImg = "title5_2.gif" Else sTitleImg = "title5_4.gif" End IF End Select %>

<% Dim Page, PID, LinkID, Passwd Page = Request("Page") PID = Request("PID") LinkID = Request("LinkID") Passwd = Request("Passwd") %> <% Dim dbConn SET dbConn = GetDBConn() Dim sqlVisit, sqlContent sqlVisit = "Update E_bbs Set BBS_Visited = BBS_Visited + 1 Where BBS_Category = '"&BBS_Category&"' AND BBS_No = " & PID dbconn.Execute(sqlVisit) sqlContent = "Select BBS_No, BBS_MID, BBS_TreeID, BBS_ChildID, BBS_LinkID, BBS_Subject, " sqlContent = sqlContent & " BBS_Editor, BBS_Email, BBS_Visited, BBS_Date, BBS_Text, BBS_DocTypeCd " sqlContent = sqlContent & " From E_bbs Where BBS_Category = '"&BBS_Category&"' AND BBS_No = " & PID Dim rsContent Set rsContent = rsGetDBResult(dbconn,sqlContent) %> ">
Á¦¸ñ  ">
±Û¾´ÀÌ  ">
ºñ¹Ð¹øÈ£    ±Û ¼öÁ¤ ½Ã »ç¿ëÇÕ´Ï´Ù.
E-mail  ">

³»¿ë 

¼öÁ¤Çϱ⠠ ¸ñ·ÏÀ¸·Î
<% rsContent.close Set rsContent = Nothing SET dbConn = Nothing %>
 
 
<% End Sub %>