Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3999266
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:38:07+00:00 2026-05-20T07:38:07+00:00

I have a dropdown menu bounded with values from the db on form load.

  • 0

I have a dropdown menu bounded with values from the db on form load. I wanted to use the dropdown as a filter to update a datagrid using an updatepanel, which I managed to get working. I’m binding the datagrid in form load and on selected index changed as shown. I also want to use the same dropdown to update a formview using the DataValueField, which for some reason isn’t working. Could the reason be that I’m using two different updatepanels and the same asynchpostbacktrigger? Where should I be binding data to the formview? Your input would be greatly appreciated! Thanks in advance…

protected void Page_Load(object sender, EventArgs e)
{
       SqlConnection conn = new SqlConnection(GetConnectionString());
        conn.Open();

        SqlCommand cmd3 = new SqlCommand("SELECT c.Email As CompanyEmail, c.Telephone AS Telephone, m.Email AS AdminEmail, m.FirstName + ' ' + m.LastName AS CompanyAdmin FROM Company c, Member m WHERE m.CompanyID = c.CompanyID AND m.CompanyID = '" + company_id + "' AND m.CompanyRole = 'Admin'", conn);
        SqlCommand cmd = new SqlCommand("SELECT CompanyName, CompanyID FROM Company ORDER BY CompanyName", conn);
        SqlCommand cmd2 = new SqlCommand("SELECT p.ProjectName AS ProjectName, p.ProjectID, p.CompanyID, p.Status AS Status FROM Project p, Company c WHERE p.CompanyID = c.CompanyID AND c.CompanyID = '" + company_id + "' ORDER BY ProjectName", conn);

        cmd.CommandType = CommandType.Text;

        SqlDataAdapter da = new SqlDataAdapter(cmd);

        DataSet ds = new DataSet();

        da.Fill(ds);

        if (!Page.IsPostBack)
        {

            company_list.DataSource = ds;
            company_list.DataTextField = "CompanyName";
            company_list.DataValueField = "CompanyID";
            company_list.DataBind();

            company_list.Items.Insert(0, new System.Web.UI.WebControls.ListItem("-- Please Select Company --"));

        }
        //cmd2.Connection.Open();

                cmd2.CommandType = CommandType.Text;

                SqlDataAdapter sqlAdapter = new SqlDataAdapter(cmd2);
                DataSet ds2 = new DataSet();
                sqlAdapter.Fill(ds2);

                Gridview1.DataSource = ds2;
                Gridview1.DataBind();

                FormView1.DataSource = cmd3.ExecuteReader();
                FormView1.DataBind();

                conn.Close();

            //}
        //cmd2.Connection.Close();
        //cmd2.Connection.Dispose();
    }

}
protected void company_list_SelectedIndexChanged(object sender, EventArgs e)
{

    company_id = company_list.SelectedValue;

    SqlConnection conn = new SqlConnection(GetConnectionString());
    conn.Open();


    SqlCommand cmd2 = new SqlCommand("SELECT p.ProjectName AS ProjectName, p.ProjectID, p.CompanyID, p.Status AS Status FROM Project p, Company c WHERE p.CompanyID = c.CompanyID AND c.CompanyID = '" + company_id + "' ORDER BY ProjectName", conn);


        cmd2.CommandType = CommandType.Text;

        SqlDataAdapter sqlAdapter = new SqlDataAdapter(cmd2);
        DataSet ds2 = new DataSet();
        sqlAdapter.Fill(ds2);

        Gridview1.DataSource = ds2;
        Gridview1.DataBind();

        SqlCommand cmd = new SqlCommand("SELECT c.Email As CompanyEmail, c.Telephone AS Telephone, m.Email AS AdminEmail, m.FirstName + ' ' + m.LastName AS CompanyAdmin FROM Company c, Member m WHERE m.CompanyID = c.CompanyID AND m.CompanyID = '" + company_id + "' AND m.CompanyRole = 'Admin'", conn);
        cmd.CommandType = CommandType.Text;

        FormView1.DataSource = cmd.ExecuteReader();
        FormView1.DataBind();

        conn.Close();


}

ASP.NET:

<div style="float:left;">
                       <table>
                        <tr>
                            <td class="style1">Select Company:</td>
                            <td><asp:DropDownList ID="company_list" runat="server" 
                               onselectedindexchanged="company_list_SelectedIndexChanged" width="185" AutoPostBack="true" /></td>
                        </tr>
                        <tr>
                            <td colspan="2" align="right">&nbsp;</td>
                        </tr>
                        </table>

                         <asp:UpdatePanel ID="UpdateInfo" runat="server">
                        <ContentTemplate>
                        <asp:FormView ID="FormView1" runat="server">
                        <ItemTemplate>
                        <table>
                        <tr>
                            <td>Company Admin:</td>
                            <td><asp:TextBox Text='<%# Eval("Email") %>' CssClass="input input1" ID="co_admin" width="150" runat="server" ReadOnly="True" /></td>
                        </tr>
                        <tr>
                            <td>Admin Email:</td>
                            <td><asp:TextBox Text='<%# Eval("AdminEmail") %>' CssClass="input input1" ID="ad_email" width="150" runat="server" ReadOnly="True" /></td>
                        </tr>
                        <tr>
                            <td>Company Email:</td>
                            <td><asp:TextBox Text='<%# Eval("CompanyEmail") %>' CssClass="input input1" ID="co_email" width="150" runat="server" ReadOnly="True" /></td>
                        </tr>
                        <tr>
                            <td>Telephone:</td>
                            <td><asp:TextBox Text='<%# Eval("Telephone") %>' CssClass="input input1" ID="telephone" width="150" runat="server" ReadOnly="True" /></td>
                        </tr>
                        <tr>
                            <td></td>
                            <td><asp:Button CssClass="button_style" width="170" ID="export" Text="EXPORT TO EXCEL" runat="server" /></td>
                        </tr>
                        </table>
                       </ItemTemplate>
                       </asp:FormView> 
                       </ContentTemplate>
                       <Triggers>
                            <asp:AsyncPostBackTrigger ControlID="company_list" />
                        </Triggers>
                       </asp:UpdatePanel>

                       </div>

                       <center>


                            <asp:UpdatePanel ID="UpdateGrid" runat="server">
                <ContentTemplate>
                           <asp:gridview ID="Gridview1" runat="server" ShowFooter="True"
                       AutoGenerateColumns="False" GridLines="None">

                    <Columns>
                    <asp:TemplateField HeaderText="Project Name">
                    <ItemTemplate>
                        <asp:TextBox Text='<%# Eval("ProjectName") %>' CssClass="input input1" ID="project_name" width="150" runat="server" ReadOnly="True"></asp:TextBox>
                    </ItemTemplate>
                    </asp:TemplateField>

                    <asp:TemplateField HeaderText="Status">
                    <ItemStyle Width="150" />
                    <ItemTemplate>
                        <center><asp:Image ImageUrl='<%# GetStatusImage(Eval("Status").ToString()) %>' ID="status" runat="server"/></center>
                    </ItemTemplate>
               </ContentTemplate>
                <Triggers>
                    <asp:AsyncPostBackTrigger ControlID="company_list" />
                </Triggers>
                </asp:UpdatePanel>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T07:38:08+00:00Added an answer on May 20, 2026 at 7:38 am

    I tried to recreate your scenario with this following code. (And it works)

    protected void Page_Load(object sender, EventArgs e)
    {
    
        var foos = GetFoos();
        Gridview1.DataSource = foos;
        Gridview1.DataBind();
    
        DetailsView1.DataSource = foos;
        DetailsView1.ChangeMode(DetailsViewMode.ReadOnly);
        DetailsView1.DataBind();
    
        DropDownList1.Items.AddRange(foos.Select(f => new ListItem(f.Name, f.Name)).ToArray());
        DropDownList1.Items.Insert(0,new ListItem("-Select-"));
    
    
    }
    
    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        var selectedValue = DropDownList1.SelectedValue;
    
        var foos = GetFoos().Where(f => f.Name == selectedValue);
    
        Gridview1.DataSource = foos;
        Gridview1.DataBind();
    
        DetailsView1.DataSource = foos;
        DetailsView1.ChangeMode(DetailsViewMode.ReadOnly);
        DetailsView1.DataBind();
    }
    
    
    static List<Foo> GetFoos()
    {
        var list = new List<Foo>();
        for(int i=0;i<10;i++)
        {
            list.Add(new Foo {City = "City" + i, Name = "Name" + i});
        }
        return list;
    }
    
    class Foo
    {
        public string Name { get; set; }
    
        public string City { get; set; }
    }
    

    and here’s the markup

    <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
    
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
    
        <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
            onselectedindexchanged="DropDownList1_SelectedIndexChanged">
        </asp:DropDownList>
    
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            <asp:GridView runat="server" ID="Gridview1">
            </asp:GridView>
            </ContentTemplate>
            <Triggers>
            <asp:AsyncPostBackTrigger ControlID="DropDownList1" />
            </Triggers>
        </asp:UpdatePanel>
        <asp:UpdatePanel ID="UpdatePanel2" runat="server">
        <ContentTemplate>
            <asp:DetailsView ID="DetailsView1" runat="server" Height="50px" Width="125px">
            </asp:DetailsView>
    
            </ContentTemplate>
            <Triggers>
            <asp:AsyncPostBackTrigger ControlID="DropDownList1" />
            </Triggers>
        </asp:UpdatePanel>
    
    </asp:Content>
    

    So, it’s something with the formview you have. Can you switch to using DetailsView ?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a dropdown menu with items and I wanted to use the ODD
I have a dropdown menu that pulls in text from a database column. The
I have a dropdown menu that I am using and can't quite get it
I have a simple dropdown menu: <form class=feedmenu align=center> <select onchange=showRSS1(this.value)> <option value=>Select an
I have a little dropdown menu similar <select> , which contolled from external js-function.
I have a HTML dropdown menu where I want to pass the selected values
I have a dropdown menu on my site that I want to use to
I have a dropdown menu with a couple of values that link to functions.
I have a dropdown menu. Its height is animated with jQuery from 5px to
I have a dropdown menu populated from a table in a MySQL database. It

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.