↧
Answer by Colin O'Dell for Building a Google Product Feed in .Net (C#)?
What if, instead of doing this:xw.WriteStartElement("rss version=\"2.0\"");xw.WriteAttributeString("xmlns", "g", null, "http://base.google.com/ns/1.0");You did something like...
View ArticleAnswer by Jon Skeet for Building a Google Product Feed in .Net (C#)?
The problem is that you're trying to create an element with a name of rss version="2.0". Instead, you should be creating an element with a name of rss, and setting the version attribute to have a value...
View ArticleBuilding a Google Product Feed in .Net (C#)?
Below is the schema I am trying to conform to:<?xml version="1.0"?><rss version="2.0" xmlns:g="http://base.google.com/ns/1.0"><channel><title>The name of your data...
View Article
More Pages to Explore .....