





Division Location
Alexandria Campus, Bisdorf 362
3001 North Beauregard Street
Alexandria, Virginia 22311
Phone (703) 845-6313
Division Hours
Mon - Fri 9:00 am - 7:30 pm
|
Student Resources
<%
'Load XML
set xml = Server.CreateObject("Microsoft.XMLDOM")
xml.async = false
xml.load(Server.MapPath("StudentResources.xml"))
'Load XSL
set xsl = Server.CreateObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load(Server.MapPath("StudentResources.xsl"))
'Transform file
Response.Write(xml.transformNode(xsl))
%>
|