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 ...