Showing posts with label Xml. Show all posts
Showing posts with label Xml. Show all posts

3.4.10

Reading XML(EXtensible Markup Language.) Files with ASP.NET

http://www.dotnetfunda.com/forums/thread686-how-to-read-xml-file-with-aspnet-i-want-to-change-the-title-for-the.aspx

http://www.stardeveloper.com/articles/display.html?article=2009030701&page=1

30.3.10

Saving xml data into database sql 2005

http://www.developer.com/net/net/article.php/3406251/Work-with-XML-Data-Type-in-SQL-Server-2005-from-ADONET-20.htm

5.2.10

XML(EXtensible Markup Language.) SERIALIZATION

http://vinbhat.wordpress.com/2008/08/19/exporting-data-creating-xml-files-using-c/

*****************************************************************************
http://www.stjhimy.com/2009/10/17/playing-around-with-xmls-and-xsds-net-smiles-for-you/

****************************************************************************


http://www.switchonthecode.com/tutorials/csharp-tutorial-xml-serialization
***
XmlSerializer serializer = new XmlSerializer(typeof(DES.DES));
TextWriter textWriter = new StreamWriter(_fileName);
serializer.Serialize(textWriter, objdes);
textWriter.Close();
*********************************************************************
http://www.csharper.net/blog/serializing_without_the_namespace__xmlns__xmlns_xsd__xmlns_xsi_.aspx
***
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
using (XmlWriter writer = XmlWriter.Create(_fileName, settings))
{
XmlSerializer serializer = new XmlSerializer(typeof(DES.DES));

XmlSerializerNamespaces namespaces = new XmlSerializerNamespaces();

namespaces.Add("", "http://www.mto.gov.on.ca/rus/des/batch-input");

serializer.Serialize(writer, objdes, namespaces);
}