Click here to Skip to main content
15,889,403 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
Brij22-Jul-09 10:13
mentorBrij22-Jul-09 10:13 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
TMFoust22-Jul-09 10:30
TMFoust22-Jul-09 10:30 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
Abhijit Jana22-Jul-09 10:38
professionalAbhijit Jana22-Jul-09 10:38 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
TMFoust22-Jul-09 10:47
TMFoust22-Jul-09 10:47 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
Abhijit Jana22-Jul-09 11:01
professionalAbhijit Jana22-Jul-09 11:01 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
Brij22-Jul-09 10:41
mentorBrij22-Jul-09 10:41 
AnswerRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
Christian Graus22-Jul-09 11:09
protectorChristian Graus22-Jul-09 11:09 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
TMFoust22-Jul-09 11:18
TMFoust22-Jul-09 11:18 
Here is the code behind my page...
public partial class _Default : System.Web.UI.Page
{
    public string study = "";
    public string rowfile = "";
    public string colfile = "";
    public string path = "";
    public string weight = "";
    public TabEngineClass tab;

    protected void Page_Load(object sender, EventArgs e)
    {
        if (this.Page.IsPostBack == false)
        {
          DataSet StudyList = new DataSet();
          StudyList.ReadXml("C:\\WorkingFiles\\TestChartGrid\\TestChartGrid\\StudiesList.xml");
          DropDownList3.DataSource = StudyList;
          DropDownList3.DataValueField = "path";
          DropDownList3.DataTextField = "cycle";
          DropDownList3.DataBind();
        }
    }

    protected void displayDefinitions(object sender, EventArgs e)
    {
        study = DropDownList3.SelectedItem.Text;
        path = DropDownList3.SelectedItem.Value;
        Label1.Visible = true;
        Label2.Visible = true;
        DropDownList1.Visible = true;
        DropDownList2.Visible = true;

        DataSet RowList = new DataSet();
        RowList.ReadXml(path + ".xml");
        DropDownList1.DataSource = RowList;
        DropDownList1.DataValueField = "path";
        DropDownList1.DataTextField = "file";
        DropDownList1.DataBind();
        DataSet ColumnList = new DataSet();
        ColumnList.ReadXml(path + ".xml");
        DropDownList2.DataSource = ColumnList;
        DropDownList2.DataValueField = "path";
        DropDownList2.DataTextField = "file";
        DropDownList2.DataBind();
    }

GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
TMFoust22-Jul-09 11:19
TMFoust22-Jul-09 11:19 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
Christian Graus22-Jul-09 13:37
protectorChristian Graus22-Jul-09 13:37 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
TMFoust23-Jul-09 3:28
TMFoust23-Jul-09 3:28 
GeneralRe: Dropdownlist not responding to the "OnSelectedIndexChanged" method. Pin
TMFoust23-Jul-09 4:43
TMFoust23-Jul-09 4:43 
Questionbar chart graph in asp.net when data is fed from database?? Pin
solo_gaurav22-Jul-09 8:55
solo_gaurav22-Jul-09 8:55 
AnswerRe: bar chart graph in asp.net when data is fed from database?? Pin
Brij22-Jul-09 9:09
mentorBrij22-Jul-09 9:09 
AnswerRe: bar chart graph in asp.net when data is fed from database?? Pin
Abhijit Jana22-Jul-09 9:16
professionalAbhijit Jana22-Jul-09 9:16 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
solo_gaurav22-Jul-09 9:31
solo_gaurav22-Jul-09 9:31 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
Brij22-Jul-09 9:36
mentorBrij22-Jul-09 9:36 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
solo_gaurav22-Jul-09 9:33
solo_gaurav22-Jul-09 9:33 
AnswerRe: bar chart graph in asp.net when data is fed from database?? Pin
Abhijit Jana22-Jul-09 9:36
professionalAbhijit Jana22-Jul-09 9:36 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
solo_gaurav22-Jul-09 9:45
solo_gaurav22-Jul-09 9:45 
AnswerRe: bar chart graph in asp.net when data is fed from database?? Pin
Brij22-Jul-09 9:49
mentorBrij22-Jul-09 9:49 
AnswerRe: bar chart graph in asp.net when data is fed from database?? Pin
Brij22-Jul-09 9:37
mentorBrij22-Jul-09 9:37 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
solo_gaurav22-Jul-09 9:43
solo_gaurav22-Jul-09 9:43 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
Brij22-Jul-09 9:46
mentorBrij22-Jul-09 9:46 
GeneralRe: bar chart graph in asp.net when data is fed from database?? Pin
solo_gaurav22-Jul-09 9:49
solo_gaurav22-Jul-09 9:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.