Hi
I have using xml dataset in following codes.
string _filename = "D:\\proj\\Samples\\ASEAN\\App_Data\\posts\\post1.xml";
ds.ReadXml(_filename);
XmlDataDocument doc1 = new XmlDataDocument();
doc1.DataSet.ReadXml(_filename);
divcont.Controls.Clear();
foreach (DataRow row in doc1.DataSet.Tables[0].Rows)
{
// i have filled my content
}
how is shorting and filtering in the xml
is it possible?
Go to the complete details ...