Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Capturing current URL in XSL

Status
Not open for further replies.

LisaGraves

Programmer
May 10, 2002
2
US
I am currently using XML and XSL files to create a menu bar. I am needing to be able to capture the current URL where the XML & XSL files are called to load in order to use it within the XSL in a conditional statement. I am trying to load the menu a different way depending on what URL they are on. The current XSL file being used is below. I was on the track of using VBScribt to pick up the URL value, but can't seem to get XSL to recognize the variable being passed from VBScript. Is there an easier way? Any ideas?


<?xml version=&quot;1.0&quot;?>
<xsl:stylesheet xmlns:xsl=&quot; version=&quot;1.0&quot;>
<xsl:eek:utput method=&quot;html&quot;/>

<xsl:template match=&quot;/&quot;>
<xsl:param name=&quot;subdashxml&quot;/>
<xsl:apply-templates select=&quot;MENUBAR&quot; />
</xsl:template>

<xsl:template match=&quot;MENUBAR&quot;>
<link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/portalweb/navigation/dhtml.css&quot;/>
<script type=&quot;text/javascript&quot; src=&quot;/portalweb/navigation/menu.js&quot;></script>
<table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;>
<tr><td>
<table id=&quot;menu&quot; border=&quot;0&quot; height=&quot;10&quot; cellspacing=&quot;1&quot; onselectstart=&quot;return false&quot; onmouseover=&quot;menuOver()&quot; onmouseout=&quot;menuOut()&quot; onclick=&quot;menuClick()&quot;>
<tr id=&quot;menubar&quot;>
<xsl:for-each select=&quot;MENU&quot;>
<xsl:choose>
<xsl:when test=&quot;TITLE = 'People'&quot;>
<td CLASS=&quot;root&quot; NOWRAP=&quot;true&quot;><b><font color=&quot;white&quot;><xsl:value-of select=&quot;TITLE&quot;/></font></b>
<xsl:call-template name=&quot;submenu&quot;/>

</td>
</xsl:when>
<xsl:eek:therwise>
<td CLASS=&quot;root&quot; NOWRAP=&quot;true&quot;><b><xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; /></b>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</xsl:eek:therwise>
</xsl:choose>
</xsl:for-each>
</tr>
</table>
</td>
<td width=&quot;100%&quot; align=&quot;right&quot; bgcolor=&quot;#1D3D7A&quot;>
<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
// Globalized strings for the java script in the search box part.
var L_strInternalPropErr_TEXT = &quot;Internal error with property fields. Please try another query.&quot;;
var L_strContainsNumericErr_TEXT = &quot;Cannot use the Contains operator for numeric properties.&quot;;
var L_strDigitsNumericErr_TEXT = &quot;Must use digits 0-9 for numeric properties.&quot;;
var L_strContainsDateErr_TEXT = &quot;Cannot use the Contains operator for date-type properties.&quot;;
var L_strSearchForSomethingErr_TEXT = &quot;You must specify something to search for.&quot;;
</SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/searchConstants.js&quot;></SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/searchFunctions.js&quot;></SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/miscFunctions.js&quot;></SCRIPT>
<TABLE border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<FORM action=&quot;/bwusa/Portal/Search&quot; method=&quot;post&quot; name=&quot;publishing_SearchForm&quot; onSubmit=&quot;return generateAndSaveSearchQueries();&quot;> <!-- All the hidden values are here -->
<TR>
<TD>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_ShowAdvanced&quot; value=&quot;true&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_WasAdvanced&quot; value=&quot;true&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_StartResultRow&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_CarriedBestBetCount&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_qs_clause&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_categories&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_documents&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_DateSearchUsed&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevCategoryKeywordConstraints&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevDocumentKeywordConstraints&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevPropertyConstraints&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_SubscriptionQuery&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;SubscribedSearch&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_AutoCatEnabled&quot; value = &quot;true&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_HiddenKeyword&quot; value = &quot;&quot; />
<SELECT style=&quot;display:none&quot; name=&quot;publishing_q_SearchScope&quot;>
<OPTION value=&quot;This site&quot;>This site</OPTION></SELECT>
<INPUT name=&quot;publishing_q_SearchKeyword&quot; value=&quot;&quot; size=&quot;15&quot; maxlength=&quot;4096&quot;/>
<INPUT style=&quot;display:none&quot; type=&quot;submit&quot; value=&quot; Go &quot; name=&quot;searchButton&quot; />
<img src=&quot;/bwusa/portal%20content/go.gif&quot; WIDTH=&quot;15&quot; HEIGHT=&quot;15&quot; />
</TD>
</TR>
</FORM>
</TABLE>

</td>
</tr>
</table>

</xsl:template>

<xsl:template name=&quot;submenu&quot;>
<table cellspacing=&quot;0&quot; class=&quot;menu&quot; style=&quot;visibility: hidden;&quot;>
<xsl:for-each select=&quot;SUBMENU&quot;>
<xsl:choose>
<xsl:when test=&quot;SUBMENU&quot;>
<tr class=&quot;sub&quot; nowrap=&quot;true&quot;>
<td style=&quot;padding-left=20px&quot; nowrap=&quot;true&quot;><b><xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; /></b></td>
<td align=&quot;right&quot;><span class=&quot;more&quot;>4</span>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</tr>
</xsl:when>
<xsl:eek:therwise>
<tr nowrap=&quot;true&quot;>
<xsl:attribute name=&quot;href&quot;>
<xsl:value-of select=&quot;URL&quot; />
</xsl:attribute>
<xsl:attribute name=&quot;target&quot;>_self</xsl:attribute>
<td nowrap=&quot;true&quot; colspan=&quot;4&quot; style=&quot;padding-left:20px;padding-right:20px&quot;><b><xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; /></b></td>
</tr>
</xsl:eek:therwise>
</xsl:choose>
</xsl:for-each>
</table>
</xsl:template>

</xsl:stylesheet>
 

<script language=&quot;javascript&quot;>
var url = window.location.href
var queryString = location.search.substring(1, location.search.length);
</script>
 
Thank you so much, but I still have a question!
How would I then be able to use this JavaScipt variable inside my XSL?

Please bear with me I am brand new to XML/XSL.

I have tried the following which results in errors: The stylesheet does not contain a document element.

Any help is greatly appreciated.

<?xml version=&quot;1.0&quot;?>
<xsl:stylesheet xmlns:xsl=&quot; version=&quot;1.0&quot;>
<xsl:eek:utput method=&quot;html&quot;/>

<xsl:template match=&quot;/&quot;>
<xsl:param name=&quot;subdashxml&quot;/>
<xsl:apply-templates select=&quot;MENUBAR&quot; />
</xsl:template>

<xsl:template match=&quot;MENUBAR&quot;>
<link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/portalweb/navigation/dhtml.css&quot;/>
<script type=&quot;text/javascript&quot; src=&quot;/portalweb/navigation/menu.js&quot;></script>
<table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;>
<tr><td>
<script language=&quot;javascript&quot;>
var url = window.location.href
var queryString = location.search.substring(1, location.search.length);
</script>
<table id=&quot;menu&quot; border=&quot;0&quot; height=&quot;10&quot; cellspacing=&quot;1&quot; onselectstart=&quot;return false&quot; onmouseover=&quot;menuOver()&quot; onmouseout=&quot;menuOut()&quot; onclick=&quot;menuClick()&quot;>
<tr id=&quot;menubar&quot;>
<xsl:for-each select=&quot;MENU&quot;>
<xsl:choose>
<xsl:when test=&quot;TITLE = 'People'&quot;>
<xsl:if test&quot;queryString = 'People'&quot;>
<td CLASS=&quot;root&quot; NOWRAP=&quot;true&quot;><b><font color=&quot;white&quot;><xsl:value-of select=&quot;TITLE&quot;/></font></b>
<xsl:call-template name=&quot;submenu&quot;/>

</td>
</xsl:if>
</xsl:when>
<xsl:eek:therwise>
<td CLASS=&quot;root&quot; NOWRAP=&quot;true&quot;><b><xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; /></b>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</xsl:eek:therwise>
</xsl:choose>
</xsl:for-each>
</tr>
</table>
</td>
<td width=&quot;100%&quot; align=&quot;right&quot; bgcolor=&quot;#1D3D7A&quot;>
<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
// Globalized strings for the java script in the search box part.
var L_strInternalPropErr_TEXT = &quot;Internal error with property fields. Please try another query.&quot;;
var L_strContainsNumericErr_TEXT = &quot;Cannot use the Contains operator for numeric properties.&quot;;
var L_strDigitsNumericErr_TEXT = &quot;Must use digits 0-9 for numeric properties.&quot;;
var L_strContainsDateErr_TEXT = &quot;Cannot use the Contains operator for date-type properties.&quot;;
var L_strSearchForSomethingErr_TEXT = &quot;You must specify something to search for.&quot;;
</SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/searchConstants.js&quot;></SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/searchFunctions.js&quot;></SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/miscFunctions.js&quot;></SCRIPT>
<TABLE border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<FORM action=&quot;/bwusa/Portal/Search&quot; method=&quot;post&quot; name=&quot;publishing_SearchForm&quot; onSubmit=&quot;return generateAndSaveSearchQueries();&quot;> <!-- All the hidden values are here -->
<TR>
<TD>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_ShowAdvanced&quot; value=&quot;true&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_WasAdvanced&quot; value=&quot;true&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_StartResultRow&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_CarriedBestBetCount&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_qs_clause&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_categories&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_documents&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_DateSearchUsed&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevCategoryKeywordConstraints&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevDocumentKeywordConstraints&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevPropertyConstraints&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_SubscriptionQuery&quot; value=&quot;&quot;/>
<INPUT type=&quot;hidden&quot; name=&quot;SubscribedSearch&quot; value = &quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_AutoCatEnabled&quot; value = &quot;true&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_HiddenKeyword&quot; value = &quot;&quot; />
<SELECT style=&quot;display:none&quot; name=&quot;publishing_q_SearchScope&quot;>
<OPTION value=&quot;This site&quot;>This site</OPTION></SELECT>
<INPUT name=&quot;publishing_q_SearchKeyword&quot; value=&quot;&quot; size=&quot;15&quot; maxlength=&quot;4096&quot;/>
<INPUT style=&quot;display:none&quot; type=&quot;submit&quot; value=&quot; Go &quot; name=&quot;searchButton&quot; />
<img src=&quot;/bwusa/portal%20content/go.gif&quot; WIDTH=&quot;15&quot; HEIGHT=&quot;15&quot; />
</TD>
</TR>
</FORM>
</TABLE>

</td>
</tr>
</table>

</xsl:template>

<xsl:template name=&quot;submenu&quot;>
<table cellspacing=&quot;0&quot; class=&quot;menu&quot; style=&quot;visibility: hidden;&quot;>
<xsl:for-each select=&quot;SUBMENU&quot;>
<xsl:choose>
<xsl:when test=&quot;SUBMENU&quot;>
<tr class=&quot;sub&quot; nowrap=&quot;true&quot;>
<td style=&quot;padding-left=20px&quot; nowrap=&quot;true&quot;><b><xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; /></b></td>
<td align=&quot;right&quot;><span class=&quot;more&quot;>4</span>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</tr>
</xsl:when>
<xsl:eek:therwise>
<tr nowrap=&quot;true&quot;>
<xsl:attribute name=&quot;href&quot;>
<xsl:value-of select=&quot;URL&quot; />
</xsl:attribute>
<xsl:attribute name=&quot;target&quot;>_self</xsl:attribute>
<td nowrap=&quot;true&quot; colspan=&quot;4&quot; style=&quot;padding-left:20px;padding-right:20px&quot;><b><xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; /></b></td>
</tr>
</xsl:eek:therwise>
</xsl:choose>
</xsl:for-each>
</table>
</xsl:template>

</xsl:stylesheet>
 
put all javascripts in CDATA sections as follows

<script language=&quot;javascript&quot;>
<![CDATA[
var url = window.location.href
var queryString = location.search.substring(1, location.search.length);
]]>
</script>

your stylesheet as below
*************************************************
<?xml version=&quot;1.0&quot; ?>
<xsl:stylesheet xmlns:xsl=&quot; version=&quot;1.0&quot;>
<xsl:eek:utput method=&quot;html&quot; />
<xsl:template match=&quot;/&quot;>
<xsl:param name=&quot;subdashxml&quot; />
<xsl:apply-templates select=&quot;MENUBAR&quot; />
</xsl:template>
<xsl:template match=&quot;MENUBAR&quot;>
<link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;/portalweb/navigation/dhtml.css&quot; />
<script type=&quot;text/javascript&quot; src=&quot;/portalweb/navigation/menu.js&quot;></script>
<table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;>
<tr>
<td>
<script language=&quot;javascript&quot;>
<![CDATA[
var url = window.location.href
var queryString = location.search.substring(1, location.search.length);
]]>
</script>
<table id=&quot;menu&quot; border=&quot;0&quot; height=&quot;10&quot; cellspacing=&quot;1&quot; onselectstart=&quot;return false&quot; onmouseover=&quot;menuOver()&quot; onmouseout=&quot;menuOut()&quot; onclick=&quot;menuClick()&quot;>
<tr id=&quot;menubar&quot;>
<xsl:for-each select=&quot;MENU&quot;>
<xsl:choose>
<xsl:when test=&quot;TITLE = 'People'&quot;>
<xsl:if test=&quot;queryString = 'People'&quot;>
<td CLASS=&quot;root&quot; NOWRAP=&quot;true&quot;>
<b>
<font color=&quot;white&quot;>
<xsl:value-of select=&quot;TITLE&quot; />
</font>
</b>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</xsl:if>
</xsl:when>
<xsl:eek:therwise>
<td CLASS=&quot;root&quot; NOWRAP=&quot;true&quot;>
<b>
<xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; />
</b>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</xsl:eek:therwise>
</xsl:choose>
</xsl:for-each>
</tr>
</table>
</td>
<td width=&quot;100%&quot; align=&quot;right&quot; bgcolor=&quot;#1D3D7A&quot;>
<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<![CDATA[
// Globalized strings for the java script in the search box part.
var L_strInternalPropErr_TEXT = &quot;Internal error with property fields. Please try another query.&quot;;
var L_strContainsNumericErr_TEXT = &quot;Cannot use the Contains operator for numeric properties.&quot;;
var L_strDigitsNumericErr_TEXT = &quot;Must use digits 0-9 for numeric properties.&quot;;
var L_strContainsDateErr_TEXT = &quot;Cannot use the Contains operator for date-type properties.&quot;;
var L_strSearchForSomethingErr_TEXT = &quot;You must specify something to search for.&quot;;
]]>
</SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/searchConstants.js&quot;></SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/searchFunctions.js&quot;></SCRIPT>
<SCRIPT LANGUAGE=&quot;JavaScript&quot; SRC=&quot;/bwusa/Portal/resources/miscFunctions.js&quot;></SCRIPT>
<TABLE border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<FORM action=&quot;/bwusa/Portal/Search&quot; method=&quot;post&quot; name=&quot;publishing_SearchForm&quot; onSubmit=&quot;return generateAndSaveSearchQueries();&quot;> <!-- All the hidden values are here -->
<TR>
<TD>
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_ShowAdvanced&quot; value=&quot;true&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_WasAdvanced&quot; value=&quot;true&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_StartResultRow&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_CarriedBestBetCount&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_qs_clause&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_categories&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_documents&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_DateSearchUsed&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevCategoryKeywordConstraints&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevDocumentKeywordConstraints&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_PrevPropertyConstraints&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_SubscriptionQuery&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;SubscribedSearch&quot; value=&quot;&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_AutoCatEnabled&quot; value=&quot;true&quot; />
<INPUT type=&quot;hidden&quot; name=&quot;publishing_q_HiddenKeyword&quot; value=&quot;&quot; />
<SELECT style=&quot;display:none&quot; name=&quot;publishing_q_SearchScope&quot;>
<OPTION value=&quot;This site&quot;>This site</OPTION>
</SELECT>
<INPUT name=&quot;publishing_q_SearchKeyword&quot; value=&quot;&quot; size=&quot;15&quot; maxlength=&quot;4096&quot; />
<INPUT style=&quot;display:none&quot; type=&quot;submit&quot; value=&quot; Go &quot; name=&quot;searchButton&quot; />
<img src=&quot;/bwusa/portal%20content/go.gif&quot; WIDTH=&quot;15&quot; HEIGHT=&quot;15&quot; />
</TD>
</TR>
</FORM>
</TABLE>
</td>
</tr>
</table>
</xsl:template>
<xsl:template name=&quot;submenu&quot;>
<table cellspacing=&quot;0&quot; class=&quot;menu&quot; style=&quot;visibility: hidden;&quot;>
<xsl:for-each select=&quot;SUBMENU&quot;>
<xsl:choose>
<xsl:when test=&quot;SUBMENU&quot;>
<tr class=&quot;sub&quot; nowrap=&quot;true&quot;>
<td style=&quot;padding-left=20px&quot; nowrap=&quot;true&quot;>
<b>
<xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; />
</b>
</td>
<td align=&quot;right&quot;>
<span class=&quot;more&quot;>4</span>
<xsl:call-template name=&quot;submenu&quot; />
</td>
</tr>
</xsl:when>
<xsl:eek:therwise>
<tr nowrap=&quot;true&quot;>
<xsl:attribute name=&quot;href&quot;>
<xsl:value-of select=&quot;URL&quot; />
</xsl:attribute>
<xsl:attribute name=&quot;target&quot;>_self</xsl:attribute>
<td nowrap=&quot;true&quot; colspan=&quot;4&quot; style=&quot;padding-left:20px;padding-right:20px&quot;>
<b>
<xsl:value-of select=&quot;TITLE&quot; disable-output-escaping=&quot;yes&quot; />
</b>
</td>
</tr>
</xsl:eek:therwise>
</xsl:choose>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top