<%@ LANGUAGE="VBSCRIPT" %> <% def_font = "" ' Get SFTC logon status get_SFTCUser username, logon_status, userid hasVCMAdmin = HasRole(userID, "VCM_ADMIN") ConnToSFTC DBConn If (not IsObject(DBConn)) Then Response.Write "

Sorry, the VCM FAQs are not available at this time. Please check back soon.

" Response.End End If If (hasVCMAdmin) Then focusCommand = "onLoad=""self.focus();document.addform.itemvalue1.focus()""" Else regYearEditAnchor = "" asOfDateEditAnchor = "" focusCommand = "" End If %> VA Creeper Marathon - FAQs background="../_themes/nature/nabkgnd.jpg" bgcolor="#FFFFFF" text="#000000" link="#993333" vlink="#333399" alink="#006633"> <%=def_font%>

Virginia Creeper Marathon
FAQs

While we try to put as much information as possible on this web site, we realize there are a variety of questions that remain unanswered for the inquisitive runner… perhaps this page will help.

If there’s still something you need to know, feel free to e-mail the race director at runfrankrun@hotmail.com.

<% If (hasVCMAdmin) Then Response.Write vbcrlf & "
Order: Question:   Answer:  
" End If ' ' Get the reg. list ' sql = "SELECT ItemID, ItemValue1 As OrderByCol, ItemBlob As Question, ItemBlob2 As Answer FROM SiteStuff WHERE ItemType = 'VCM-FAQs' ORDER BY ItemValue1" Set rs = DBConn.Execute(sql) While (NOT rs.eof) Response.Write "

" If (hasVCMAdmin) Then Response.Write vbcrlf & rs("OrderByCol") & " /Edit/ /Delete/
" End If Response.Write vbcrlf & "" & rs("Question") & "

" Response.Write vbcrlf & "

" & rs("Answer") & "

" Response.Write vbcrlf & "

 

" rs.MoveNext WEnd rs.Close set rs = Nothing DBConn.Close set DBConn = Nothing %>