[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Server Side Includes for ASP
I am trying to publish an ASP document. Most of it is working, but there are two parts (both variation of the same thing) that are giving me a hard time.
I need to put
<%@ Page language="VB" AutoEventWireup="false" MasterPageFile="~/FANUCRoboticsMasterPageMeta.master" Title="FLEXIBLE PART FEEDING"%>
in my document. I have coded this as:
<xsl:text disable-output-escaping="yes"><%@ Page language="VB" AutoEventWireup="false" MasterPageFile="~/FANUCRoboticsMasterPageMeta.master" Title="FLEXIBLE PART FEEDING"%></xsl:text>
in my customization. When I look at my published documents, here is what I get.
<%@ Page language="VB" AutoEventWireup="false" MasterPageFile="~/FANUCRoboticsMasterPageMeta.master" Title="FLEXIBLE PART FEEDING"%>
My second problem is that I need to put
<asp:Content ID="cntHead" ContentPlaceHolderID="cphHeadContent" Runat="Server">
<title>Benefits of Flexible Part Feeding</title>
</asp:Content>
in my document. I have coded this as:
<xsl:text disable-output-escaping="yes">
<asp:Content ID="cntHead" ContentPlaceHolderID="cphHeadContent" Runat="Server">
<title>Benefits of Flexible Part Feeding</title>
</asp:Content>
</xsl:text>
Again, when I look look at my published documents, here is what I get.
<asp:Content ID="cntHead" ContentPlaceHolderID="cphHeadContent" Runat="Server">
<title>Benefits of Flexible Part Feeding</title>
</asp:Content>
Any ideas as to what I am doing wrong?
I am using V1.74 DocBook style sheets and xsltproc. I am no more ideas left on how to turn < and > into < and >.
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]