TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Simplest Code To Import Data From A Xml File To Dataset
Midhun Tp
Aug 17
2016
Code
737
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
This is a simple code which imports data from an xml file to a dataset,
DataSet ds =
new
DataSet();
ds.ReadXml(Server.MapPath(
"XMLFile.xml"
), XmlReadMode.InferSchema);
C#
xml