View Single Post
Join Date: Apr 2008
Posts: 29
Reputation: Mapper99 is an unknown quantity at this point 
Solved Threads: 0
Mapper99 Mapper99 is offline Offline
Light Poster

Gridview Export to XML not formatting tags correctly..

 
0
  #1
Oct 23rd, 2008
I have some code which exports the contents of a gridview to XML. The XML is coming out with incorrect field tags:

<tr>
<td>Builder Damage Inspection</td>
<td>request for final BDI inspection. No damage report on pre damage inspection.</td>
<td>2008-07-09 3:13:59 PM</td>
<td>2008-08-13 9:13:48 AM</td>
<td>512135</td>
<td>5450865</td>
<td>CLOSED</td>
</tr>

Here is the code I am using to do the export:
  1. Response.ClearContent()
  2. Response.AddHeader("content-disposition", "attachment; filename=test.xml")
  3. Response.ContentType = "text/xml"
  4. Dim oStringWriter As New IO.StringWriter()
  5. Dim oHtmlTextWriter As New HtmlTextWriter(oStringWriter)
  6. GridView1.RenderControl(oHtmlTextWriter)
  7. Response.Write(oStringWriter.ToString)
  8. Response.End()

Am I taking the correct approach with this?

Thanks in advance,

M
Reply With Quote