sir, in my following query
var fix1 = from future in fixture.Descendants("item").Take(4)
select (new
{
titlee = future.Element("title").Value,
venue = future.Element("text").Value
});
i want to split the venue details, so i return as
venue = future.Element("text").Value.Split(new char[] { ',' })
it split the data, but i dont know how to retrieve and assign to repeator control.
Loading
AartiPosted Nov 14, 2011, 7:16 AM
Plz check this link
may be help you.
http://msdn.microsoft.com
thanks.
VulpesPosted Sep 20, 2011, 5:09 AM