<% '################################################################################# strRqMethod = Request.QueryString("method") '################################################################################# if strRqMethod = "Topic" then if Request.QueryString("TOPIC_ID") = "" then Response.Redirect "default.asp" Response.End end if if (strAuthType = "nt") then call NTauthenticate() if (ChkAccountReg() = "1") then call NTUser() end if end if Response.Redirect "topic.asp?TOPIC_ID=" & Request.QueryString("TOPIC_ID") end if if strRqMethod = "Forum" then if Request.QueryString("FORUM_ID") = "" then Response.Redirect "default.asp" Response.End end if if (strAuthType = "nt") then set my_Conn = Server.CreateObject("ADODB.Connection") my_Conn.Open strConnString call NTauthenticate() if (ChkAccountReg() = "1") then call NTUser() end if end if Response.Redirect "forum.asp?FORUM_ID=" & Request.QueryString("FORUM_ID") end if %>