Thank you for your reply.
The page containing the links is an XML page, formatted with XSL. The links in question are generated by an <xsl:for-each> loop, so the "target" is specified on each link, as the template does the work.
I added the <base> tag as you mentioned, but it made no difference.
By the way, the showdoc.asp file is feeding a .xml file back to the frame with the snippet below. It was suggested that I use Response.Redirect in place of this subroutine instead, but that only generates the error "Object doesn't support this property or method.":
Set TS = objFSO.OpenTextFile(strFilename, ForReading, Create)
If Not TS.AtEndOfStream Then
Do While Not TS.AtEndOfStream
strLine = TS.ReadLine
Response.Write strLine
Loop
End If
Thanks again for your help.
Ken
|