1
Answer

Error in reading xml file

chitra

chitra

13y
1.4k
1
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)