using System; using System.Data; using System.Data.Sql; using System.Data.SqlClient; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class koerteleht2 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { SqlConnection cn = new SqlConnection( "Data Source=localhost;Initial Catalog=xml1;Integrated Security=True"); SqlCommand cm=new SqlCommand( "SELECT * FROM koerad FOR XML RAW('koer'), ROOT('koerad'), ELEMENTS", cn); cn.Open(); String vastus = cm.ExecuteScalar().ToString(); Response.ContentType = "text/xml"; Response.Write(vastus); Response.End(); } }