This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

How to output attribute without namespace


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]