Click here to Skip to main content
15,885,546 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: Getting values with template Pin
PIEBALDconsult26-Mar-12 8:21
mvePIEBALDconsult26-Mar-12 8:21 
QuestionXmlDocument.SelectNodes not working for namespace attributes Pin
PIEBALDconsult23-Mar-12 12:23
mvePIEBALDconsult23-Mar-12 12:23 
AnswerRe: XmlDocument.SelectNodes not working for namespace attributes Pin
woopsydoozy26-Mar-12 11:08
woopsydoozy26-Mar-12 11:08 
GeneralRe: XmlDocument.SelectNodes not working for namespace attributes Pin
PIEBALDconsult26-Mar-12 16:52
mvePIEBALDconsult26-Mar-12 16:52 
GeneralRe: XmlDocument.SelectNodes not working for namespace attributes Pin
PIEBALDconsult28-Mar-12 5:26
mvePIEBALDconsult28-Mar-12 5:26 
GeneralRe: XmlDocument.SelectNodes not working for namespace attributes Pin
woopsydoozy28-Mar-12 5:53
woopsydoozy28-Mar-12 5:53 
GeneralRe: XmlDocument.SelectNodes not working for namespace attributes Pin
PIEBALDconsult28-Mar-12 10:24
mvePIEBALDconsult28-Mar-12 10:24 
GeneralRe: XmlDocument.SelectNodes not working for namespace attributes Pin
woopsydoozy28-Mar-12 10:52
woopsydoozy28-Mar-12 10:52 
Michael Kay rocks (check out his books, if you're doing anything with XSLT): http://www.stylusstudio.com/xsllist/200403/post30310.html

And attributes don't inherit the namespaces of their containing element by default. They only have namespaces if they have their own namespace prefix (which I don't think I've ever seen in practice). So if you had this XML:
HTML
<demo xmlns:foo='foo URI'><foo:box contents='zombie cat'/></demo>

and you wanted to find out what was in the box, you'd add foo and its URI to your namespace manager and get /demo/foo:box/@contents. Only with this XML:
HTML
<demo xmlns:foo='foo URI'><foo:box foo:contents='zombie cat'/></demo>

would you need to specify the attribute's namespace: /demo/foo:box/@foo:contents.
GeneralRe: XmlDocument.SelectNodes not working for namespace attributes Pin
PIEBALDconsult28-Mar-12 18:14
mvePIEBALDconsult28-Mar-12 18:14 
QuestionXPath query to return nodes based on a range within an attribute's value. Pin
Bill.Moo13-Mar-12 6:21
Bill.Moo13-Mar-12 6:21 
AnswerRe: XPath query to return nodes based on a range within an attribute's value. Pin
woopsydoozy16-Mar-12 7:43
woopsydoozy16-Mar-12 7:43 
GeneralRe: XPath query to return nodes based on a range within an attribute's value. Pin
Bill.Moo19-Mar-12 6:18
Bill.Moo19-Mar-12 6:18 
Questionreconfirm Pin
santoshkumar11876-Mar-12 7:06
santoshkumar11876-Mar-12 7:06 
AnswerRe: reconfirm Pin
Chandrasekharan P9-Apr-12 21:02
Chandrasekharan P9-Apr-12 21:02 
Questionxml data will not display on the screen on a php page Pin
awolarczuk1-Mar-12 0:05
awolarczuk1-Mar-12 0:05 
Questiongenerating html tree from xml file using xslt. Pin
anikbutt2210-Feb-12 1:41
anikbutt2210-Feb-12 1:41 
QuestionHow to open zipfile and xls Pin
Themba Zwane8-Feb-12 7:53
Themba Zwane8-Feb-12 7:53 
AnswerRe: How to open zipfile and xls Pin
Richard MacCutchan8-Feb-12 21:54
mveRichard MacCutchan8-Feb-12 21:54 
AnswerRe: How to open zipfile and xls Pin
ZurdoDev19-Mar-12 9:02
professionalZurdoDev19-Mar-12 9:02 
QuestionImplementing Apriori Algorithm with XQuery Pin
helloworld202018-Jan-12 1:47
helloworld202018-Jan-12 1:47 
Questionsplitting the xmlnode based on nodelength Pin
harinit11-Jan-12 22:20
harinit11-Jan-12 22:20 
AnswerRe: splitting the xmlnode based on nodelength Pin
chriselst13-Jan-12 0:48
chriselst13-Jan-12 0:48 
GeneralRe: splitting the xmlnode based on nodelength Pin
harinit16-Jan-12 22:37
harinit16-Jan-12 22:37 
AnswerRe: splitting the xmlnode based on nodelength Pin
woopsydoozy16-Mar-12 7:59
woopsydoozy16-Mar-12 7:59 
QuestionVStudio and xsd.exe create different schema Pin
Tomerland4-Jan-12 10:22
Tomerland4-Jan-12 10:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.