unable to access the server.mappath() methode what is the wrong here
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
namespace AjaxControlsDemonstration
{
public class serviceForAutoComplete
{
public List<string> getCountires(string x)
{
List<string> countries = new List<string>();
DataSet ds = new DataSet();
ds.ReadXml();
return countries;
}
}
}