Results 1 to 12 of 12

Thread: [RESOLVED] ASP.net - Reading XML File

Threaded View

  1. #1

    Thread Starter
    Member
    Join Date
    Aug 2001
    Location
    Ottawa
    Posts
    38

    [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
  •  



Click Here to Expand Forum to Full Width