|
|
|
|
|
|
|
|
|
|
|
|
Upcoming Tournaments
|
<%
set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")
xmlDoc.async = true
'' response.write server.MapPath("tournaments.xml")
xmlDoc.load server.MapPath("tournaments.xml")
Set root = xmlDoc.documentElement
set tour=root.selectNodes("tournament")
for i=0 to 5
day1=tour(i).selectsingleNode("day_of_month").text
month1=tour(i).selectsingleNode("month").text
the_month=monthName(month1)
year1=tour(i).selectsingleNode("year").text
date_string= day1 & " " & the_month & ", " & year1
%>
|
<%
next
%>
|
|
|
|
|
|