Subject: How to output attribute without namespace
From: Dmitri Ilyin <dmitri.ilyin@xxxxxxxxx>
Date: Thu, 6 Sep 2001 18:54:14 +0200
|
Hi *,
I have next XML:
<components xmlns:param="http://localhost/testui.txt">
<component>
<table width="100" param:height="height"/>
</component>
</components>
I'd like to get a copy of this, but the Attribute param:height I want to get
without namespace like:
<components xmlns:param="http://localhost/testui.txt">
<component>
<table width="100" height="height"/>
</component>
</components>
How can I do that????
thanks for advise.
regards
Dmitri
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|