Koteswararao Mallisetti

Koteswararao Mallisetti

  • NA
  • 1.1k
  • 466.1k

unable to access the server.mappath() methode what is the wrong here

Sep 10 2010 9:03 AM
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;
        
        }
    }
}

Answers (5)