Issue is that I would like to sort products which I write to XML from a custom module, but when I sort the products in the backend the corresponding order in the frontend doesnt match.
heres how I load the products:
Group group = new Group(Properties.get_Value("group"));
//Here I would like to do the sorting...
foreach (Product product in group.Products)
{
XmlElement productNode = productXML.CreateElement("Product");
...etc
}
...etc
}
How can this be done?
best regards Sune Fengel