using System; using System.Collections.Generic; using System.Linq; using System.Xml.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class loetelu1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Response.ContentType = "text/xml"; Response.Write(""); /* XElement juur = new XElement("eesnimi", "Juku"); Response.Write(juur.ToString()); */ XElement juur = new XElement("eesnimed", new XElement("eesnimi", "Juku"), new XElement("eesnimi", "Kati"), new XElement("eesnimi", "Mati") ); Response.Write(juur.ToString()); } }