write a sample code make use of xmltext writer



write a sample code make use of xmltext writer..

Answer / career.tina@yahoo.co.in

using System;
using System.Data;
using System.Configuration;
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;
using System.Xml;

public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
try
{
//creating a apth for writing xml
string xml1 = Server.MapPath("test2.xml");
//initialising xmlwriter
XmlTextWriter xt = new XmlTextWriter(xml1,
System.Text.Encoding.UTF8);
xt.Formatting = System.Xml.Formatting.Indented;
//start writing it
xt.WriteStartDocument();
//element
xt.WriteStartElement("name");
// attribute
xt.WriteAttributeString("my_name", "name");
xt.WriteStartElement("phn");
xt.WriteAttributeString("my_phn", "266549560");
xt.WriteStartElement("id");
xt.WriteAttributeString("my_id", "100");
xt.WriteStartElement("city");
xt.WriteAttributeString("my_city", "city");
xt.WriteElementString ("title","gud girl");
//ending all elements
xt.WriteEndElement ();
xt.WriteEndElement();
xt.WriteEndElement();
xt.WriteEndElement();
xt.WriteEndDocument();
xt.Close ();

}
catch
{
}

}
}

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is the difference between excute query and excute nonquery.?

4 Answers  


How will you maintain versioning in asp.net 2.0?

0 Answers   MCN Solutions,


How to remove cache object in asp.net?

2 Answers   TVS,


What is a multilingual website?

0 Answers  


How do you implement postback with a text box?

0 Answers  


Can user control be stored in library?

0 Answers  


Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?

0 Answers  


How to implement globalization and localization in the use interface in .net.

0 Answers  


What is operator overloading in dotnet

1 Answers  


Where do you store the information about the user?s locale?

1 Answers   Siebel, Visual Soft,


What are the cookies types in asp.net?

0 Answers  


What is the difference between CLICK and MOUSE DOWN Event ?

0 Answers   MCN Solutions,


Categories