I have asp file with code below:
<html>
<head>
<link rel="stylesheet" href="<%=bb_style%>"/>
<title>asdf</title>
</head>
I need to include title from this file into another asp file formed by xslt transformation. I use this code:
<xsl:value-of select="document(content)/html/head/title"/>
But I have nothing returned from this code. I blame href="<%=....%>"
but not sure and don't know how to avoid this problem.