I have created the following programme, it retrive values form a XML document and show them in the drop down list.When a user change the value of the drop down list it should get up dated and show values in text boxes. But in event handler its not getting
the value to the variable. Where am i worng? This is the my coding.
public partial class UpdateApps : System.Web.UI.Page
{
//const string filePath = @"D:\Domains\amazingsrilanka.lk\wwwroot\AppSocial_LK\Apps.xml";
const string filePath = @"G:\Visual Studio 2013 Proj\AppSocialUpdater\AppSocialUpdater\Apps.xml";
XPathDocument doc;
XPathNavigator nav;
XPathExpression expr;
XPathNodeIterator iterator;
int index = 0;
protected void Page_Load(object sender, EventArgs e)
{
if (Session["admin-user"] == null)
{
Respon ...
Go to the complete details ...