ASP.NET

LiveUI open source framework for .NET websites

Posted by admin on March 9, 2010 at 12:57 pm

It is possible? In the web development open source is similar with PHP & MySQL and a tone of free CMS based on them. Now it is possible with .NET too. How? LiveUI is the answer and is built for .NET 3.5 sp1 Based on pure ASP .NET Pluggable to any asp.net application jQuery and [...]

LINQ to XML (C#) create new xml document

Posted by admin on April 10, 2008 at 5:14 pm

How to create a new xml with LINQ   var objCars= new[] { new {CarID = 2, CarName = "Ford", Fuel = "Diesel"}, new {CarID = 3, CarName = "Audi", Fuel = "Diesel"}, new {CarID = 4, CarName = "Mercedes", Fuel = "Diesel"}, new {CarID = 1, CarName = "BMW", Fuel = "Diesel"} };   [...]