How would I create the following XML file and populate withdata from a dataset?

  • Thread starter Thread starter Ray Stevens
  • Start date Start date
R

Ray Stevens

I am not familier with .NET xml classes and am trying to create something
similar to the following document and populate it with data from a DataSet:

<LXML>
<Order>
<Input>
<Origination_Code value="LTT"/>
<Transaction_Type value="UPD"/>
<Lender_ID value="1234567"/>
<Lender_Contact_Name value="John Doe"/>
</Input>
</Order>
</LXML>

This will be the basic format and, as I mentioned previously, all elements
will be string values from a DataSet.

Should I use a schema for this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top