advertisement
Login | Register   
  Include Code  Search Tips
TODAY'S HEADLINES  |   ARTICLE ARCHIVE  |   TIP BANK
Browse DevX
Partners & Affiliates
advertisement
advertisement
Tip of the Day
Expertise: Beginner
Language: XML
June 14, 2004
Retrieve Specific Nodes When They Contain an xmlns Namespace Parameter
When an XML file contains a xmlns parameter, you can't use simple SelectSingleNode to retrieve a specific node. Take the following code, for example:

<?xml version="1.0" encoding="utf-8" ?>
<OfferSheetXML xmlns="http://localhost/OfferSheetSchema.xsd" >
<Offer>
<OfferSheetId>31</OfferSheetId>
</Offer>
</OfferSheetXML>
Now, try to run the following code with the above XML:

<%@ Import Namespace="System.Xml"%>
<%@ Page Language="C#" Debug="true"%>
<script runat="server">
void Page_Load(object sender, System.EventArgs e)
{
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(Server.MapPath("temp.xml"));
XmlNode node = xmlDoc.SelectSingleNode("//OfferSheetXML");
Response.Write ("Node Name : " + node.Name);
}
</script>

It's quick, easy and you get access to all the articles on DevX.
This registration/login is to allow you to read articles on devx.com.
Already a member?





Sonu Kapoor
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible. Submit your tip here.
advertisement
advertisement