<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>.NET XML Forum RSS Feed (Replies Included)</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the '.NET XML' forum at Programmer's Heaven, including replies.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 18 May 2013 20:51:53 -0700</pubDate>
    <lastBuildDate>Sat, 18 May 2013 20:51:53 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>creating questionnaire section with XML in website</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/426465/426465/creating-questionnaire-section-with-xml-in-website/</link>
      <description>I've designed a website using C# and ASP.NET whose one of the feature is questionnaire section.&lt;br /&gt;
&lt;br /&gt;
registered users can ask questions by logging in to the website and then go to the questionnaire section.&lt;br /&gt;
&lt;br /&gt;
I want to present this system by using XML, i.e. the users questions &amp;amp; answers will be in XML files.&lt;br /&gt;
&lt;br /&gt;
How to do this, I am pretty new to XML. Can anyone provide me the guidance?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/426465/426465/creating-questionnaire-section-with-xml-in-website/</guid>
      <pubDate>Sun, 18 Dec 2011 23:49:29 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>building registration and login system with XML, C# &amp; ASP.NET</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/426452/426452/building-registration-and-login-system-with-xml-c--aspnet/</link>
      <description>Can anyone guide me to &lt;strong&gt;build registration and login system with XML, C# and ASP.NET. &lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
I want to learn it. Are there any links for it? &lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;I'll be very much glad if any one guides me for this tutorial.&lt;/strong&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/426452/426452/building-registration-and-login-system-with-xml-c--aspnet/</guid>
      <pubDate>Sun, 18 Dec 2011 08:29:29 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>XML parsing using XLinq</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/425092/425092/xml-parsing-using-xlinq/</link>
      <description>I have a simple XML schema from a video recorder that I need to parse using XLinq.  All of the XLinq example seem to take a XML document.  Here is the schema:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;&lt;br /&gt;
&amp;lt;xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"&amp;gt;&lt;br /&gt;
  &amp;lt;xs:element name="GPSIndexes"&amp;gt;&lt;br /&gt;
    &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
      &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element name="annotation"&amp;gt;&lt;br /&gt;
          &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
            &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="documentation" type="xs:string" /&amp;gt;&lt;br /&gt;
            &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
          &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
        &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element name="RHXmlType" type="xs:string" /&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element name="RHXmlVersion" type="xs:decimal" /&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element name="mediaName" type="xs:string" /&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element name="dateCreated" type="xs:decimal" /&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element name="timeCodeOffset" type="xs:unsignedByte" /&amp;gt;&lt;br /&gt;
        &amp;lt;xs:element maxOccurs="unbounded" name="GPSIndex"&amp;gt;&lt;br /&gt;
          &amp;lt;xs:complexType&amp;gt;&lt;br /&gt;
            &amp;lt;xs:sequence&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="lon" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="lat" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="altitude" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="timeCode" type="xs:string" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="name" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="utcTime" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="course" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="speed" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="azimuth" type="xs:byte" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="dop" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="fix" type="xs:string" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="satsinuse" type="xs:unsignedByte" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="geoidht" type="xs:decimal" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="range" type="xs:unsignedByte" /&amp;gt;&lt;br /&gt;
              &amp;lt;xs:element name="data" type="xs:unsignedByte" /&amp;gt;&lt;br /&gt;
            &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
          &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
        &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
      &amp;lt;/xs:sequence&amp;gt;&lt;br /&gt;
    &amp;lt;/xs:complexType&amp;gt;&lt;br /&gt;
  &amp;lt;/xs:element&amp;gt;&lt;br /&gt;
&amp;lt;/xs:schema&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What is the proper way to load this into XLinq so I can validate XML?&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
Jason.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/425092/425092/xml-parsing-using-xlinq/</guid>
      <pubDate>Wed, 05 Oct 2011 14:38:42 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>rsa-sha1 signature in .NET XML</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/392886/392886/rsa-sha1-signature-in-net-xml/</link>
      <description>Hello, I try to create the signature element like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;KeyInfo&amp;gt;
  &amp;lt;X509Data&amp;gt;
   &amp;lt;X509Certificate&amp;gt;
   &amp;lt;/X509Certificate&amp;gt;
  &amp;lt;/X509Data&amp;gt;
  &amp;lt;X509IssuerSerial&amp;gt;
    &amp;lt;X509IssuerName&amp;gt;
      &amp;lt;X509IssuerName&amp;gt;
      &amp;lt;/X509IssuerName&amp;gt;
      &amp;lt;X509SerialNumber&amp;gt;
      &amp;lt;/X509SerialNumber&amp;gt;
    &amp;lt;/X509IssuerName&amp;gt;
  &amp;lt;/X509IssuerSerial&amp;gt;
&amp;lt;/KeyInfo&amp;gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
But when I create code&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;KeyInfo ki = new KeyInfo();
KeyInfoX509Data keyInfoData = new KeyInfoX509Data(cert);
keyInfoData.AddIssuerSerial(cert.Issuer, cert.GetSerialNumberString());
ki.AddClause(keyInfoData);&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
I can't get it same kind.&lt;br /&gt;
&lt;br /&gt;
Format is:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;&amp;lt;KeyInfo&amp;gt;
  &amp;lt;X509Data&amp;gt;
    &amp;lt;X509IssuerSerial&amp;gt;
      &amp;lt;X509IssuerName&amp;gt;&amp;lt;/X509IssuerName&amp;gt;
      &amp;lt;X509SerialNumber&amp;gt;&amp;lt;/X509SerialNumber&amp;gt;
    &amp;lt;/X509IssuerSerial&amp;gt;
    &amp;lt;X509Certificate&amp;gt;
    &amp;lt;/X509Certificate&amp;gt;
  &amp;lt;/X509Data&amp;gt;
&amp;lt;/KeyInfo&amp;gt;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If I create the second X509Data-tag, I have two different X509-tags then which first have certificate and second have issuerserial.&lt;br /&gt;
&lt;br /&gt;
How can I exclude X509IssuerSerial-tag from X509Data-tag?&lt;br /&gt;
&lt;br /&gt;
Thank you&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/392886/392886/rsa-sha1-signature-in-net-xml/</guid>
      <pubDate>Fri, 26 Jun 2009 02:19:03 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>An XML source from the Internet</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/367302/367302/an-xml-source-from-the-internet/</link>
      <description>hi, all what I need is a good site(link ) that describes how to be professional starting from 0, in creation and manipulating SQL database from the .NET website.&lt;br /&gt;
if u have such one please send to me, because I do not have time to read books :P (not because I am lazy but because I have many books to read)&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/367302/367302/an-xml-source-from-the-internet/</guid>
      <pubDate>Thu, 15 Nov 2007 06:38:16 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>xml automatic database setup</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/332584/332584/xml-automatic-database-setup/</link>
      <description>hi, can anyone help me. I need to create an XML script so that I dont have to manually create a database when distributing my softwares.&lt;br /&gt;
&lt;br /&gt;
The script should be packaged together with the software so that during installation, the installer uses this script to create the database and the tables with all the definitions on the fly ie column names etc&lt;br /&gt;
&lt;br /&gt;
ANYONE PLEASE ASSIST!&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/332584/332584/xml-automatic-database-setup/</guid>
      <pubDate>Mon, 20 Mar 2006 07:04:32 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>Navigating through XML Documents</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/318433/318433/navigating-through-xml-documents/</link>
      <description>Hi again,&lt;br /&gt;
i know that i need to use a DocumentNavigator class to navigate in XML document, i need to use MoveToChild/MoveToParent there the problem is that i don't know how to load this DocumentNavigator.&lt;br /&gt;
tnx for advance.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/318433/318433/navigating-through-xml-documents/</guid>
      <pubDate>Fri, 14 Oct 2005 10:23:53 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>XML transformation library wanted</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/313304/313304/xml-transformation-library-wanted/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
Im searching for a library - free or commercial - which gives me the possibility to transform files (e.g. ini, csv, ...) to XML by the use of schema files.&lt;br /&gt;
My aim is to develop a program in c# which has to transform XML data to csv, ini, ... files and vice versa. I think .NET gives me a good possibility to transform XML to what ever using XSL, but what about the way back. Therefore Im searching for a library giving me that possibility. As the source files which have to be transformed have different structure/look the use of schema files are a must.&lt;br /&gt;
&lt;br /&gt;
Anybody knows a good product?&lt;br /&gt;
&lt;br /&gt;
Thanks in advance&lt;br /&gt;
Andreas&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/313304/313304/xml-transformation-library-wanted/</guid>
      <pubDate>Thu, 25 Aug 2005 08:50:33 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>MySQL</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/307115/307115/mysql/</link>
      <description>So here is what im trying to do. Create a client windows form which connects to a mysql database on a webserver. my webserver only lets me use LOCALHOST to connect to the database, so obviously those clients, which wouldnt be LOCAL HOST, wont be able to log in. what im trying to get accomplished is that the windows form on client side gets info from various text areas and then moves them to an ASP page on the server, or perhaps XML or PHP. The server and client need to be able to send data, the data in that database, back and forth between each other. is there any way to do this, and if so please provide an example.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/307115/307115/mysql/</guid>
      <pubDate>Tue, 28 Jun 2005 20:59:43 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>Re: Reading from an XML in VB.Net</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/290899/304534/re-reading-from-an-xml-in-vbnet/#304534</link>
      <description>: Okay all I want to do is read from one line on the XML....JUST ONE LINE. *sigh* I can't find a tut anywhere on the internet they tells me how to use the read function to do this. What I really want to do is to compare user inputted data from a text box to one element in the XML. EX: The user enters the name John; I hash that value using MD5 then check to see if the value is the same in the XML. Something like&lt;br /&gt;
: &lt;br /&gt;
: [Semi-Pseudo code]&lt;br /&gt;
: Dim user as HashValue (txtUser.txt)&lt;br /&gt;
: If user = element name Then&lt;br /&gt;
: Blah, blah, blah, etc...&lt;br /&gt;
: [/Semi-Pseudo code]&lt;br /&gt;
: &lt;br /&gt;
: But I can't read just on element. Help please.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
Right off I cant think of how to pull one line only out of an XML file without reading the file or at least the file up to the point that the line is encountered. Although there is probably a way in the System.Xml Namespace somewhere.&lt;br /&gt;
&lt;br /&gt;
I think I heard or read somewhere that .NET 2005 will support a feature like that where you could query an xml like you do a database. I am not sure of this or not, but to my knowledge in the current .NET versions XML Files need to be loaded and read through either by an XML parser or your code to get data from it. Unless you are wanting to do something like a FileStream and ReadLine() until you get to the right one but using a XmlTextReader would be faster and make it easier to read the data.&lt;br /&gt;
&lt;br /&gt;
My advice appears to be the same as others you have described use the System.Xml.XmlTextReader to perform this&lt;br /&gt;
&lt;br /&gt;
Dim xr as New System.Xml.Xml.TextReader(YourXmlFile)'or load XmlFragment&lt;br /&gt;
do while xr.read&lt;br /&gt;
 If xr.NodeType=System.Xml.XmlNodeType.Element Then&lt;br /&gt;
  If xr.Name==user Then&lt;br /&gt;
   Dim input As String = xr.ReadString()&lt;br /&gt;
   'Do your code MD5 Comparison&lt;br /&gt;
   Exit Loop ' so you stop reading the file and no extra processing is done&lt;br /&gt;
  End If &lt;br /&gt;
 End If&lt;br /&gt;
loop&lt;br /&gt;
xr.Close&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope this helps, sorry if it doesn't&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/290899/304534/re-reading-from-an-xml-in-vbnet/#304534</guid>
      <pubDate>Thu, 02 Jun 2005 13:00:35 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>XSL Transformation help needed (original and new provided)</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/300412/300412/xsl-transformation-help-needed-original-and-new-provided/</link>
      <description>Hi all,&lt;br /&gt;
&lt;br /&gt;
I am to this forum and new to XSL. I am working on a generic reporting solution. XSL is the stumbling block.&lt;br /&gt;
I need to create an XSL stylesheet that converts ANY(!) XML created by .Net DataSet object into an XML file,&lt;br /&gt;
which can be diplayed in a web page using another stylesheet.&lt;br /&gt;
&lt;br /&gt;
The DataSet can have results from multiple (!) queries.&lt;br /&gt;
The very first one unnamed SQL creates &amp;lt;table&amp;gt; node with the column names as children where text has the data.&lt;br /&gt;
Every new SQL creates Table1, Table2, etc. I need to convert all queries into headers with column names and rows with data.&lt;br /&gt;
&lt;br /&gt;
Original:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;&lt;br /&gt;
&amp;lt;OriginalDataSet&amp;gt;&lt;br /&gt;
  &amp;lt;Table&amp;gt;&lt;br /&gt;
    &amp;lt;Column1&amp;gt;25.7500&amp;lt;/Column1&amp;gt;&lt;br /&gt;
  &amp;lt;/Table&amp;gt;&lt;br /&gt;
  &amp;lt;Table1&amp;gt;&lt;br /&gt;
    &amp;lt;Test_x0020_Decimal&amp;gt;45.15&amp;lt;/Test_x0020_Decimal&amp;gt;&lt;br /&gt;
  &amp;lt;/Table1&amp;gt;&lt;br /&gt;
  &amp;lt;Table2&amp;gt;&lt;br /&gt;
    &amp;lt;Today&amp;gt;2005-04-13T23:02:38.6270000+10:00&amp;lt;/Today&amp;gt;&lt;br /&gt;
  &amp;lt;/Table2&amp;gt;&lt;br /&gt;
  &amp;lt;Table3&amp;gt;&lt;br /&gt;
    &amp;lt;Num_x0020_of_x0020_Authors&amp;gt;23&amp;lt;/Num_x0020_of_x0020
_Authors&amp;gt;&lt;br /&gt;
  &amp;lt;/Table3&amp;gt;&lt;br /&gt;
  &amp;lt;Table4&amp;gt;&lt;br /&gt;
    &amp;lt;Num_x0020_of_x0020_Employees&amp;gt;43&amp;lt;/Num_x0020_of_x00
20_Employees&amp;gt;&lt;br /&gt;
  &amp;lt;/Table4&amp;gt;&lt;br /&gt;
  &amp;lt;Table5&amp;gt;&lt;br /&gt;
    &amp;lt;Column1&amp;gt;Testing Output&amp;lt;/Column1&amp;gt;&lt;br /&gt;
  &amp;lt;/Table5&amp;gt;&lt;br /&gt;
  &amp;lt;Table6&amp;gt;&lt;br /&gt;
    &amp;lt;au_id&amp;gt;172-32-1176&amp;lt;/au_id&amp;gt;&lt;br /&gt;
    &amp;lt;au_lname&amp;gt;White&amp;lt;/au_lname&amp;gt;&lt;br /&gt;
    &amp;lt;au_fname&amp;gt;Johnson&amp;lt;/au_fname&amp;gt;&lt;br /&gt;
    &amp;lt;phone&amp;gt;408 496-7223&amp;lt;/phone&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;10932 Bigge Rd.&amp;lt;/address&amp;gt;&lt;br /&gt;
    &amp;lt;city&amp;gt;Menlo Park&amp;lt;/city&amp;gt;&lt;br /&gt;
    &amp;lt;state&amp;gt;CA&amp;lt;/state&amp;gt;&lt;br /&gt;
    &amp;lt;zip&amp;gt;94025&amp;lt;/zip&amp;gt;&lt;br /&gt;
    &amp;lt;contract&amp;gt;true&amp;lt;/contract&amp;gt;&lt;br /&gt;
  &amp;lt;/Table6&amp;gt;&lt;br /&gt;
  &amp;lt;Table6&amp;gt;&lt;br /&gt;
    &amp;lt;au_id&amp;gt;213-46-8915&amp;lt;/au_id&amp;gt;&lt;br /&gt;
    &amp;lt;au_lname&amp;gt;Green&amp;lt;/au_lname&amp;gt;&lt;br /&gt;
    &amp;lt;au_fname&amp;gt;Marjorie&amp;lt;/au_fname&amp;gt;&lt;br /&gt;
    &amp;lt;phone&amp;gt;415 986-7020&amp;lt;/phone&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;309 63rd St. #411&amp;lt;/address&amp;gt;&lt;br /&gt;
    &amp;lt;city&amp;gt;Oakland&amp;lt;/city&amp;gt;&lt;br /&gt;
    &amp;lt;state&amp;gt;CA&amp;lt;/state&amp;gt;&lt;br /&gt;
    &amp;lt;zip&amp;gt;94618&amp;lt;/zip&amp;gt;&lt;br /&gt;
    &amp;lt;contract&amp;gt;true&amp;lt;/contract&amp;gt;&lt;br /&gt;
  &amp;lt;/Table6&amp;gt;&lt;br /&gt;
&amp;lt;/OriginalDataSet&amp;gt;&lt;br /&gt;
&lt;br /&gt;
New, comments are not necessary, they are for readability only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?xml version="1.0" standalone="yes"?&amp;gt;&lt;br /&gt;
&amp;lt;?xml-stylesheet type="text/xsl" href="datasetstylesheet.xsl" ?&amp;gt;&lt;br /&gt;
&amp;lt;DATASET&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table&amp;gt; --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Column1&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;25.7500&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table1&amp;gt; --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Test_x0020_Decimal&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;45.15&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table2&amp;gt; --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Today&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;2005-04-13T23:02:38.6270000+10:00&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table3&amp;gt; --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Num_x0020_of_x0020_Authors&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;23&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table4&amp;gt; --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Num_x0020_of_x0020_Employees&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;43&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table5&amp;gt; --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Column1&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Testing Output&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;!-- &amp;lt;Table6&amp;gt;, NOTE: only one header but 2 rows! --&amp;gt;&lt;br /&gt;
	&amp;lt;header&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;au_id&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;au_lname&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;au_fname&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;phone&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;address&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;city&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;state&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;zip&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;contract&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/header&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;172-32-1176&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;White&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Johnson&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;408 496-7223&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;10932 Bigge Rd.&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Menlo Park&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;CA&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;94025&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;true&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
	&amp;lt;row&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;213-46-8915&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Green&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Marjorie&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;415 986-7020&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;309 63rd St. #411&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;Oakland&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;CA&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;94618&amp;lt;/field&amp;gt;&lt;br /&gt;
		&amp;lt;field&amp;gt;false&amp;lt;/field&amp;gt;&lt;br /&gt;
	&amp;lt;/row&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/DATASET&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Your help is appreciated!&lt;br /&gt;
Anatoli&lt;br /&gt;
&lt;br /&gt;
If you need more info, please post here.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/300412/300412/xsl-transformation-help-needed-original-and-new-provided/</guid>
      <pubDate>Thu, 21 Apr 2005 23:31:15 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>Reading from an XML in VB.Net</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/290899/290899/reading-from-an-xml-in-vbnet/</link>
      <description>Okay all I want to do is read from one line on the XML....JUST ONE LINE. *sigh* I can't find a tut anywhere on the internet they tells me how to use the read function to do this. What I really want to do is to compare user inputted data from a text box to one element in the XML. EX: The user enters the name John; I hash that value using MD5 then check to see if the value is the same in the XML. Something like&lt;br /&gt;
&lt;br /&gt;
[Semi-Pseudo code]&lt;br /&gt;
Dim user as HashValue (txtUser.txt)&lt;br /&gt;
If user = element name Then&lt;br /&gt;
Blah, blah, blah, etc...&lt;br /&gt;
[/Semi-Pseudo code]&lt;br /&gt;
&lt;br /&gt;
But I can't read just on element. Help please.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/290899/290899/reading-from-an-xml-in-vbnet/</guid>
      <pubDate>Wed, 02 Feb 2005 07:43:07 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>XML schema</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/284606/284606/xml-schema/</link>
      <description>Hello, &lt;br /&gt;
&lt;br /&gt;
This is the problem. I am using typed datasets, to generate an xml file from the schema xsd defined in .NET. It is populated using a stored proc in SQL server. &lt;br /&gt;
&lt;br /&gt;
The putput xml file shows this: (enterprise is root element)&lt;br /&gt;
&amp;lt;enterprise xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I need to remove this part from the output - "xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" since I also have a DTD definition in the output inserted later (the dtd declaration in the xml is a requirement)&lt;br /&gt;
&lt;br /&gt;
Having both the schema definition (xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance) and the dtd is causing problems and i need to remove the schema definition. How can i do that - since I am using the schema to generate the XML file in .NET i don't know if i can do that.&lt;br /&gt;
&lt;br /&gt;
any suggestions will be helpful, thanks,&lt;br /&gt;
&lt;br /&gt;
saumil&lt;br /&gt;
Saumil Annegiri,&lt;br /&gt;
Research Assistant,&lt;br /&gt;
Center for Business and Information Technologies,&lt;br /&gt;
ULLafayette, LA&lt;br /&gt;
ph. # 337-654-8660&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/284606/284606/xml-schema/</guid>
      <pubDate>Fri, 10 Dec 2004 09:05:41 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>Re: Creating database tables from XML Data</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/280759/281021/re-creating-database-tables-from-xml-data/#281021</link>
      <description>Hi, I got the solution for this&lt;br /&gt;
&lt;br /&gt;
Thank you&lt;br /&gt;
&lt;br /&gt;
: Hi,&lt;br /&gt;
: &lt;br /&gt;
: I would like to know how to create a database table with the XML Data.&lt;br /&gt;
: I worked on reading data from XML into Dataset. It is successfule. But I am unable to create a table with that data into database.&lt;br /&gt;
: &lt;br /&gt;
: Plz help me.&lt;br /&gt;
: &lt;br /&gt;
: regards,&lt;br /&gt;
: Venkatesh&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/280759/281021/re-creating-database-tables-from-xml-data/#281021</guid>
      <pubDate>Wed, 10 Nov 2004 12:47:07 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>Creating database tables from XML Data</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/280759/280759/creating-database-tables-from-xml-data/</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I would like to know how to create a database table with the XML Data.&lt;br /&gt;
I worked on reading data from XML into Dataset. It is successfule. But I am unable to create a table with that data into database.&lt;br /&gt;
&lt;br /&gt;
Plz help me.&lt;br /&gt;
&lt;br /&gt;
regards,&lt;br /&gt;
Venkatesh&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/280759/280759/creating-database-tables-from-xml-data/</guid>
      <pubDate>Mon, 08 Nov 2004 08:45:36 -0700</pubDate>
      <category>.NET XML</category>
    </item>
    <item>
      <title>help needed-- asp .net</title>
      <link>http://www.programmersheaven.com/mb/DotNetXML/262991/262991/help-needed---asp-net/</link>
      <description>hi all,&lt;br /&gt;
   could it possible to add an alert message for a ontextchanged event for a text box which is in edit template of a data grid.&lt;br /&gt;
   alert message should contain both ok and cancel option.&lt;br /&gt;
does anybody has solution?&lt;br /&gt;
Regards,&lt;br /&gt;
Jamie&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/DotNetXML/262991/262991/help-needed---asp-net/</guid>
      <pubDate>Mon, 14 Jun 2004 00:36:29 -0700</pubDate>
      <category>.NET XML</category>
    </item>
  </channel>
</rss>