Posted on: 7/27/2015 4:50:06 AM | Views : 750

Hi have bind a list box by an XML file but my listbox selectedindexchange does not fire
if (!IsPostBack)             {                 var path = Server.MapPath("~/LangauageMaster.xml");                 XmlDocument xdoc = new XmlDocument();                 string list = "li";                 xdoc.Load(path);                 XmlNodeList xn = xdoc.GetElementsByTagName(list);               //  DataSet ds = new DataSet();   ...

Go to the complete details ...