|
-
Sep 3rd, 2009, 12:45 PM
#1
Thread Starter
Member
[RESOLVED] ASP.net - Reading XML File
How would I open and XML file on my "C" drive and read the contents?
If I save it to a server drive, it's easy:
Dim myDataSet As New DataSet()
myDataSet.ReadXml(Server.MapPath("~/XMLData/RightFax.xml"))
Me.GridView1.DataSource = myDataSet
GridView1.DataBind()
What I would prefer to do though, is have the user save the XML file to their PC (the get it via e-mail), but be able to access my web site and load the contents.
Any ideas would be appreciated
Last edited by cfisher; Sep 8th, 2009 at 02:58 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|