help for transformation (copy-of and variable)
Sun, 26 Mar 2006 14:53:26 -0800
Hi, all,
Could you give me any idea or code to transform xml?
This is the input xml:
<addressDetail><unitnum/><streeetnum/><streetname/><suburb/><state/><postal/><mailunitnum/><mailstreeetnum/><mailstreetname/><mailsuburb/><mailstate/><mailpostal/></addressDetail/>
where each element has their own sub-elem ...
|
xsl:attribute won't output correct namespace
Fri, 24 Mar 2006 11:15:01 -0600
I want to transform some XML from:
<MyElement/>
to <MyNewElement xmlns:xsi="..." xmlns="mynewnamespace"/>
I'm using xsl:attribute because I have to put those attributes on different
elements in different scenarios (due to some quirks with deserialization),
but the xsi attribute always comes out as "xp_0 ...
|
How to navigate MS VS 2005 datasource file (*.xsd)
Thu, 23 Mar 2006 12:27:46 -0600
I cannot determine what I'm missing here.
//xs:appinfo returns the proper nodes as expected.
//DataSource fails to return any nodes.
If I change the DataSource element to
<xs:DataSource>
</xs:DataSource>
I get the nodes returned as expected with //xs:DataSource.
So I'm guessing I really don't unde ...
|
XML Schema for XSL(T)?
Thu, 23 Mar 2006 10:44:35 +0100
Is there XML Schema (.xsd file) for XSL? Where can I find it?
...
|
translation of very complex XML Documents
Wed, 22 Mar 2006 14:53:43 -0800
I have a very complex XML Documents that requires to be translated to verity
of a printable styled document.Such as HTML, PDF, XML/XSL-FO , Text with
printer command mixed, etc
Since the document complexity I am currently using a 20K line
XSLT(Templates/ conditional statements) plus Large VB.net to do the ...
|
[Announce] XQuery Webinar: Freeing XML and Relational Data for the Web
22 Mar 2006 08:35:25 -0800
[ANN:] Dear Microsoft.public.xsl News Group,
Are you struggling with XML and relational data? Do you need to create
complex web pages or XML documents that are generated from relational
data and XML?
Then you'll want to attend this new webinar, on Thursday, March 23,
2006 at 10:00AM and 2:00PM EST (GMT-5) ...
|
new line replacement in xsl:attribute value with fx2.0
Wed, 22 Mar 2006 06:19:28 -0800
Hi,
I have the following xsl:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<a>
<xsl:attribute name="href">
pippo
</xsl:attribute>
</a>
</xsl:templa ...
|
|
|
filter a table by a selected value of the dropdown box
21 Mar 2006 07:56:25 -0800
Hello NG,
I'm a newbie in xsl. I have a dropdown with different authors. If I
selected an author in the dropdown a table should only show the rows by
this author.
My filter works fine if I static value written in the filter. How get I
the value of the dropdown to set the filter? Please help me.
This work ...
|
How to reference and test the attributes of a preceding-sibling?
21 Mar 2006 05:56:30 -0800
Hello group.
I am seeking help with xsl & xpath syntax.
I am processing a document that resembles the following xml.
<items>
<item id="a" attr1="1"/>
<item id="b" parentID="a" attr1="2"/>
<item id="c" parentID="b" attr1="3"/>
<item id="d" parentID="a" attr1="4"/>
<item id="c" pare ...
|
TIP: Using ASP.NET Web Controls in XSL
Sun, 19 Mar 2006 14:29:41 +0100
This may have been posted earlier but I'm so excited this works so I want to
make sure people knows about it. It's so simple to use ASP.NET controls
inside XSL templates.
TestWebControls.xsl, sample XSL sheet, notice the addition if the namespace
"asp" in the xsl:transform tag, it's important:
-------- ...
|