|
<%=strGameName%>
Technical Reference Guide
This area will provide you
with general information about <%=strGameName%>, as
well as answers to specific problems. To make it easier for
you, this guide will allow you to search for the answer to
your question by a variety of subject areas. The areas will
be cross-referenced, so you won't have to worry about looking
in each section.
If you would prefer to view the entire guide all at once,
click here. By viewing the Technical Reference Guide (TRG) in this manner, you will have the option to read or print the entire guide. This may be helpful if you would prefer to read the TRG offline.
Please select one of the
buttons below to jump to the section that will best serve
you, or scroll down to view the Table of Contents of this Technical Reference Guide:
<%
strSQL = "SELECT DISTINCT S.SORT, S.ID AS ID_SECTION, S.NAME AS SECTION_NAME, S.[BUTTON IMAGE FILE NAME] AS BUTTON_FILE_NAME FROM [GAME INFO] GI, SECTIONS S"
strSQL = strSQL + " WHERE GI.GAME = " & intIDGame
strSQL = strSQL + " AND S.ID = GI.SECTION"
strSQL = strSQL + " ORDER BY S.SORT"
Set RS = OBJdbConnection.Execute( strSQL )
%>
<%if strSysReq <> "" then%>
System Requirements
<%=strSysReq%>
<%end if%>
Table of Contents
<%
if intSectionCount > 0 then
RS.MoveFirst
end if
Do While Not RS.EOF
intSection = RS.Fields.Item("ID_SECTION")
%>
<%=RS.Fields.Item("SECTION_NAME")%>
<%
strSQL = "SELECT I.ID, GI.LABEL, I.LINK FROM [GAME INFO] GI, ITEM I"
strSQL = strSQL + " WHERE GI.GAME = " & intIDGame
strSQL = strSQL + " AND GI.SECTION = " & intSection
strSQL = strSQL + " AND GI.ITEM = I.ID"
strSQL = strSQL + " ORDER BY GI.SORT"
Set RS1 = OBJdbConnection.Execute( strSQL )
Do While Not RS1.EOF
%>
- <%=LTrim(RS1.Fields.Item("LABEL") & " ")%>&g=<%=intIDGame%>&s=<%=intSection%>"><%=RS1.Fields.Item("LINK")%>
<%
RS1.MoveNext
Loop
RS1.Close
%>
<%
RS.MoveNext
Loop
RS.Close
%>
|