i have a web service that returns the product details of a selected product as an xml file as string.
string result = this.ws.GetProductInfo(productID);i have an xmldatasource and a formview:
//set the data of the xmldatasource from the webservice resultXmlDataSource xmlDS = new XmlDataSource();
xmlDS.Data = result;
xmlDS.DataBind();
//bind the form viewthis.frmVwProduct.DataSource = xmlDS;
this.frmVwProduct.DataBind();
View Complete Post