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!

Search results for query: *

  1. tiermann

    pulling first few characters of a textfiles into to a string

    got it working! turns out i had to define the variable "textonpage" outside the template thank again man
  2. tiermann

    pulling first few characters of a textfiles into to a string

    Perhaps i'm doing it all wrong. This is what i'm doing (still an issue with the site map) <xsl:template match="SiteMapHTML"> <xsl:variable name="breaktitle">Alumni</xsl:variable> <!-- Change this to break at a different point --> <table> <tr> <td width='50%' >...
  3. tiermann

    pulling first few characters of a textfiles into to a string

    I'm getting this error in the browser. but not in the cms Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace...
  4. tiermann

    pulling first few characters of a textfiles into to a string

    I'm trying to do this: <xsl:variable name="theid1">../<xsl:value-of select="@URL"/>.xml</xsl:variable> <xsl:variable name="textonpage"><xsl:value-of select="document($theid1)" /></xsl:variable> But it works on the CMS, but not in the browser
  5. tiermann

    pulling first few characters of a textfiles into to a string

    I'm not sure. This is the header to the main xslt file. <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:igxlib="urn:igxlibns"...
  6. tiermann

    pulling first few characters of a textfiles into to a string

    I am attempting to grab the first few characters into a string with in xslt. Is this possible? if so, can you help me :)
  7. tiermann

    Site map help

    well the system that we are using has a massive stylesheet. they want to put everything in one stylesheet. and i'm trying to keep it as compact as possible.
  8. tiermann

    Site map help

    Thanks, Tom. I appreciate your help :) I was able to get it into the list but just had to add a for loop. seemed to work well! my boss was happy :) thanks again! <xsl:template match="SiteMapHTML"> <xsl:for-each select="//Navigation[@Name='HTMLSiteMap']//Page">...
  9. tiermann

    Site map help

    I am trying to create a HTML site map from this information. I've been trying to pull out the data in HTMLSiteMap. but for some reason can't seem to figure out how to do so. i know there is a way to do it with out having to do a for loop. i'm just not sure how. I was able to do it with the...
  10. tiermann

    Site map help

    Hello i am a beginner with xslt and am trying to create a HTML site map from a xml file. just trying to use the URL and Page Title. <?xml version="1.0" ?> <HTMLSiteMap ID="x4153" Name="HTML Site Map" Layout="default.xsl" IsComponent="false"...

Part and Inventory Search

Back
Top