Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
2
Answers
Data Export into XML Format in ASP.Net
basit khan
9y
381
1
Reply
Dear,
I export Data from ASP.Net/SQL to xml successfully.
Below is the code
Dim ds As New DataSet()
Try
Dim con As New SqlConnection("server=BAK;initial catalog=Test;uid=sa;pwd=sa")
con.Open()
Dim da As New SqlDataAdapter("select Emp_No,Emp_Name,Emp_GSM1 from Employee", con)
da.Fill(ds, "Employee")
Catch
'Label1.Text = "Error while connecting to a database"
End Try
Dim doc As New XmlDataDocument(ds)
Xml1.Document = doc
doc.Save("D:\Employee.xml")
But what i'm facing the problem, when Emp_GSM1 is null value then its not showing in XML file.
Example
<?xml version="1.0"?>
-<NewDataSet>
<Employee>
<Emp_No>1</Emp_No>
<Emp_Name>A</Emp_Name>
<Emp_GSM1>122</Emp_GSM1>
</Employee>
<Employee>
<Emp_No>2</Emp_No>
<Emp_Name>B</Emp_Name> ''here not exporting becoz Emp_GSM1
</Employee>
</NewDataSet>
How to export xml with even null value.
Thanks
Basit.
Post
Reset
Cancel
Answers (
2
)
Next Recommended Forum
posting data from view model to form (javascript)
asp.net juqery ui