[Home] [By Thread] [By Date] [Recent Entries]
Hi there,
This is my first post - Hi all :)
I am using an XML list in conjunction with ASP to pull in textual
headers for my web pages.
I use this:
<?xml version="1.0"?>
<root>
<page name="default.asp" text1="HOME" text2="Home"/>
</root>
Now I have been asked if instead of text here can I add an image. Now
I don't know how to do this. Does anyone?
I call the xml using:
<%
'Response.Write(CurrentPage)
'Response.End()
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.validateOnParse=True
objXML.load(Server.MapPath("xml/pages.xml"))
set objNodeXML=objXML.documentElement
Text1=objNodeXML.selectSingleNode("page[@name='" & CurrentPage &
"']").getAttribute("text1")
Text2=objNodeXML.selectSingleNode("page[@name='" & CurrentPage &
"']").getAttribute("text2")
Set objXML = Nothing
function CurrentPage
scriptname=lcase(Request.ServerVariables("SCRIPT_NAME"))
CurrentPage=right(scriptname,len(scriptname)-instrrev(scriptname,"/"))
end function
%>
Can anyone help?
|

Cart



