chitra

chitra

  • NA
  • 34
  • 20.4k

Error in reading xml file

Aug 9 2011 2:36 AM
hi,
i am getting the following error,'http:/synd.cricbuzz.com/ashwl/scores-multi.xml' is not a valid virtual path. please suggest me how to remove this error.

 protected void Page_Load(object sender, EventArgs e)
  {
  string xmlfilepath = Server.MapPath(@"http://synd.cricbuzz.com/ashwl/scores-multi.xml");
  if (File.Exists(xmlfilepath))
  {
  using (DataSet ds = new DataSet())
  {
  XmlDocument doc = new XmlDocument();
  doc.LoadXml(File.ReadAllText(xmlfilepath));
  ds.ReadXml(new XmlNodeReader(doc));
  Repeater2.DataSource = ds;
  Repeater2.DataBind();
  }
  }

Answers (1)