XmlTextReader tr = new XmlTextReader(path_and_File);
while (tr.Read()) {
//here I need to extract tag name;
//all goes fine until it see <tag1:Other>
//an exception raises saying that tag1 namespace isn't declare;
}
XmlTextReader tr = new XmlTextReader(path_and_File);
while (tr.Read()) {
//here I need to extract tag name;
//all goes fine until it see <tag1:Other>
//an exception raises saying that tag1 namespace isn't declare;
}
To copy to clipboard, switch view to plain text mode
Probabily you understand the core........how do I use those type of tags?
Bookmarks