473,503 Members | 9,903 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

xsl landscape printing

Hi I am tryign to use this to print my table in landscape by default.
i am new at the xsl and need some assistance. when i try to use the
following i get the error:

Cannot view XML input using XSL style sheet. Please correct the error
and then click the Refresh button, or try again later.
--------------------------------------------------------------------------------
Variable or parameter 'printingtype' cannot have both a select
attribute and non-empty content.

code:

<xsl:param name="printingtype" select="'landscape'">
<xsl:variable name="pageheight">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">21</xsl:when>
<xsl:otherwise>29.7</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="pagewidth">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">29.7</xsl:when>
<xsl:otherwise>21</xsl:otherwise>
</xsl:choose>
</xsl:variable>

Any guidance would be appreciated.

thanks
shen

Feb 19 '07 #1
6 3869
sh*****@gmail.com wrote:
Variable or parameter 'printingtype' cannot have both a select
attribute and non-empty content.

<xsl:param name="printingtype" select="'landscape'">
<xsl:variable name="pageheight">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">21</xsl:when>
<xsl:otherwise>29.7</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="pagewidth">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">29.7</xsl:when>
<xsl:otherwise>21</xsl:otherwise>
</xsl:choose>
</xsl:variable>
The message means exactly what it says. You can set the value of the
param *EITHER* by using an XPath expression in the select attribute,
*OR* by providing a contained XSLT tree that computes the value, and
since you have not terminated the xsl:param before you start defining
the variables you are trying to do both.

What are you actually trying to do?
--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry
Feb 19 '07 #2
On Feb 19, 8:22 pm, shei...@gmail.com wrote:
<xsl:param name="printingtype" select="'landscape'">
<xsl:variable name="pageheight">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">21</xsl:when>
<xsl:otherwise>29.7</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="pagewidth">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">29.7</xsl:when>
<xsl:otherwise>21</xsl:otherwise>
</xsl:choose>
</xsl:variable>

Variable or parameter 'printingtype' cannot have both a
select attribute and non-empty content.
The error message is about as clear as it could possibly
get. xsl:param element cannot have both non-empty content
and a select attribute. Either your transformation is not
well-formed XML (in that case use / to indicate empty
content for xsl:param element) or you're trying to do
something that cannot be done.

Since you seem to expect $printingtype to be already
defined in those xsl:variable elements, I'd bet you simply
forgot that slash in xsl:param.

--
roy axenov

Feb 19 '07 #3
Well... I have a xsl file that i want to print, but i want my client
to be able to print it in landscape mode and not have to go set it
himself. Because this table that is being printed does not fit when
prinitng in portrait...

So i should put the </xsl:paramsomewhere else?
where do i terminate it? i thought i just end at the end of the xsl
file (??)

sorry about my ignorance..i'm just tryign to get this to work with a
fiel someone else made..and yet i hardly even know how xsl works...
is printing i landscape even doable??

thanks
shen
On Feb 19, 1:31 pm, Joe Kesselman <keshlam-nos...@comcast.netwrote:
shei...@gmail.com wrote:
Variable or parameter 'printingtype' cannot have both a select
attribute and non-empty content.
<xsl:param name="printingtype" select="'landscape'">
<xsl:variable name="pageheight">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">21</xsl:when>
<xsl:otherwise>29.7</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="pagewidth">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">29.7</xsl:when>
<xsl:otherwise>21</xsl:otherwise>
</xsl:choose>
</xsl:variable>

The message means exactly what it says. You can set the value of the
param *EITHER* by using an XPath expression in the select attribute,
*OR* by providing a contained XSLT tree that computes the value, and
since you have not terminated the xsl:param before you start defining
the variables you are trying to do both.

What are you actually trying to do?

--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry- Hide quoted text -

- Show quoted text -

Feb 19 '07 #4
Where did i forget the slash?
Which one is the empty element?
does printingtype not exist??

thanks
shen

On Feb 19, 1:35 pm, "roy axenov" <r_axe...@mail.ruwrote:
On Feb 19, 8:22 pm, shei...@gmail.com wrote:


<xsl:param name="printingtype" select="'landscape'">
<xsl:variable name="pageheight">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">21</xsl:when>
<xsl:otherwise>29.7</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="pagewidth">
<xsl:choose>
<xsl:when
test="$printingtype='landscape'">29.7</xsl:when>
<xsl:otherwise>21</xsl:otherwise>
</xsl:choose>
</xsl:variable>
Variable or parameter 'printingtype' cannot have both a
select attribute and non-empty content.

The error message is about as clear as it could possibly
get. xsl:param element cannot have both non-empty content
and a select attribute. Either your transformation is not
well-formed XML (in that case use / to indicate empty
content for xsl:param element) or you're trying to do
something that cannot be done.

Since you seem to expect $printingtype to be already
defined in those xsl:variable elements, I'd bet you simply
forgot that slash in xsl:param.

--
roy axenov- Hide quoted text -

- Show quoted text -

Feb 19 '07 #5
sh*****@gmail.com wrote:
Where did i forget the slash?
It looks like you intended

<xsl:param name="printingtype" select="'landscape'"/>

Note the /to terminate the element. Or, equivalently,

<xsl:param name="printingtype" select="'landscape'"></xsl:param>

XSLT/XML elements, unlike HTML/SGML elements, *MUST* be properly terminated.

--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry
Feb 19 '07 #6
Ok perfect, so i did this and no longer get the error...but i still
can not get my page to print in landscape mode...
how woudl i do this?

i've tried everythign i know how. I even tried rotating the page 90
degrees...but then only my title rotates and the table stays the way
it is. Just to give you a better idea: the database used is access,
and an xml file and then using the xsl file we can view teh content in
the db. which is what i am tryign to print in landscape..

thanks..
shen
On Feb 19, 3:23 pm, Joe Kesselman <keshlam-nos...@comcast.netwrote:
shei...@gmail.com wrote:
Where did i forget the slash?

It looks like you intended

<xsl:param name="printingtype" select="'landscape'"/>

Note the /to terminate the element. Or, equivalently,

<xsl:param name="printingtype" select="'landscape'"></xsl:param>

XSLT/XML elements, unlike HTML/SGML elements, *MUST* be properly terminated.

--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry

Feb 19 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
4550
by: gilga123 | last post by:
Trying & trying ad infinitum to print page in landscape mode from Java program - orientation is correct landscape but printing width will NOT go to landscape - always prints in portrait mode width...
0
1971
by: gilga123 | last post by:
Trying & trying ad infinitum to print page in landscape mode from Java program - orientation is correct landscape but printing width will NOT go to landscape - always prints in portrait mode width...
3
10563
by: MarcJ | last post by:
Hello, I can't seem to get printing to landscape working. Here is some of the code I've tried. '--------------------------------------------------------------------------------- Dim...
2
1288
by: Andrei Gavra via .NET 247 | last post by:
Hello. I have a problem when I choose landscape format forprinting. The page width and height are remaining the same asfor portrait format. In portrait format everything is ok and I'mposition my text...
1
1991
by: Bill Burke | last post by:
I have created a "Certificate of Completion" in C# .net and have a typical problem of not being able to print this in landscape mode without user intervention. The certificate is a web user control...
5
6819
by: cpopham | last post by:
I tried posting earlier and it never showed up.. I have a simple program to print a text file. I need to know how to change the page settings to landscape if it is not already in ladnscape mode. ...
1
2003
by: lord.zoltar | last post by:
Hi, I'm trying to print a text report from an application. It works fine, except in landscape mode, which it seems to ignore. I have a function that handles the PrintPage even for the...
2
8426
by: FireStarter | last post by:
I am apparently unable to print landscape... maybe I'm doing something wrong here. I am adding a printDocument to a form. The form also has a textbox containing the text that I want to print and...
6
5572
by: farukcse | last post by:
Dear sir, I have trouble with printing page with landscape. I am using java script to print the page. as well as I have set css file to print landscape but it is not working. I have used these...
0
7207
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7294
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7361
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7470
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5602
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5026
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4693
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3183
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3173
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.