Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8948871
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:06:24+00:00 2026-06-15T13:06:24+00:00

I’m trying to retrieve data from an Xml. I’m a newbie into programming so

  • 0

I’m trying to retrieve data from an Xml. I’m a newbie into programming so please pardon me.

  protected void Page_Load(object sender, EventArgs e)
  {

    string MyXmlFile= @"E:\\Programming stuff\\Work\\website\\XMLFile.xml";    
     DataSet ds= new DataSet();

    System.IO.FileStream MyReadXml= new System.IO.FileStream(MyXmlFile, System.IO.FileMode.Open);

    ds.ReadXml(MyReadXml);

    DataGrid DataGrid1 = new DataGrid();

    DataGrid1.DataSource = ds;
    DataGrid1.DataBind();
   }

The error I get on the browser is:

“The process cannot access the file ‘E:\Programming stuff\Work\website\XMLFile.xml’ because it is being used by another process.”

Can you help me identify which is that other process that is accessing the file?

Edit: After the changes to the code:

protected void Page_Load(object sender, EventArgs e)
{
  if(!IsPostBack) 
  {
    string MyXmlFile= Server.MapPath("~/XMLFile.xml");    


   using(System.IO.FileStream MyReadXml= new System.IO.FileStream(MyXmlFile,System.IO.FileMode.Open));
    {
 DataSet ds= new DataSet();
ds.ReadXml(MyReadXml);

DataGrid DataGrid1 = new DataGrid();

DataGrid1.DataSource = ds;
DataGrid1.DataBind();
PlaceHolder1.Controls.Add(DataGrid1);
    }
}
}

Error: “The name ‘MyReadXml’ does not exist in the current context”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:06:25+00:00Added an answer on June 15, 2026 at 1:06 pm

    Always close and dispose the stream (try using block). restart your appserver (werserver) and see what happen?

    if(!IsPostBack)
    {
     string MyXmlFile= @"E:\\Programming stuff\\Work\\website\\XMLFile.xml";    
     using(System.IO.FileStream MyReadXml=System.IO.File.OpenRead(MyXmlFile))
      {
        DataSet ds= new DataSet();
        ds.ReadXml(MyReadXml);
        //Add DataGrid control markup in .aspx.
        DataGrid1.DataSource = ds.Tables[0];
        DataGrid1.DataBind();
      }
     }
    

    NOTE: If XMLFile.xml is placed under the root of website then use Server.MapPath() method to get absolute file path from virtual path.

    string MyXmlFile= Server.MapPath("~/XMLFile.xml"); 
    

    If you want to add ASP.NET server control programatically then add PlaceHolder control into .aspx file and call the PlaceControl1.Controls.Add(DataGrid1) method.

    string MyXmlFile= @"E:\\Programming stuff\\Work\\website\\XMLFile.xml";    
         using(System.IO.FileStream MyReadXml=System.IO.File.OpenRead(MyXmlFile))
          {
            DataSet ds= new DataSet();
            ds.ReadXml(MyReadXml);
            DataGrid DataGrid1=new DataGrid();
            DataGrid1.DataSource = ds.Tables[0];
            DataGrid1.DataBind();
            PlaceHolder1.Controls.Add(DataGrid1);
          } 
    

    EDIT:

    I still get the error as “MyReadXml does not exist” Did I do anything wrong?

    You’ve terminated the using block. Please remove the semi-colon.

    using(System.IO.FileStream MyReadXml=new   
         System.IO.FileStream(MyXmlFile,System.IO.FileMode.Open))
        {
         ...
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am currently running into a problem where an element is coming back from
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I am trying to render a haml file in a javascript response like so:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.