0

我有一个下拉列表,允许管理员将用户分配给角色,并且应该在更改索引时自动执行此操作,但不幸的是,在我单击一个完全不相关的复选框之前,它什么也不做。这是代码

    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    string userName = Request.QueryString["user"];
    MembershipUser usr = Membership.GetUser(userName);

    ProfileCommon p = Profile.GetProfile(usr.UserName);

    var item = ((DropDownList)sender).SelectedItem;

    switch (item.Value)
    {
        case "1":
            if (Roles.IsUserInRole(usr.UserName, "Builder") == false)//if the user is not already in the builder role then add them
            {
                Roles.AddUserToRole(usr.UserName, "Builder");//here we add the user into the builder role
                StatusMessage2.Text = "User has been added to the builder role";//Letting the admin know that the user was added to the role

                /* Creating a connection to write to a table in the default database */
                string connection = ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString;
                SqlConnection conn = null;
                conn = new SqlConnection(connection);
                conn.Open();

                /* Here we execute the command and add a member into the table */
                using (SqlCommand cmd = new SqlCommand())
                {

                    string query = String.Format("INSERT INTO TestTable (testfirst, testlast, testaddr, testmail, testcomp) VALUES('{0}', '{1}', '{2}', '{3}','{4}')", p.fName, p.lName, p.Address, usr.Email, p.Company);
                    cmd.Connection = conn;
                    cmd.CommandType = CommandType.Text;
                    cmd.CommandText = query;
                    cmd.ExecuteNonQuery();
                }
            }
            break;
    }
 }

这是我在 aspx 页面中制作 DDL 的地方

    <asp:DropDownList ID="DropDownList1" runat="server" 
    onselectedindexchanged="DropDownList1_SelectedIndexChanged">
<asp:ListItem Value="0">Please select from below...</asp:ListItem>
<asp:ListItem Value="1">Builder</asp:ListItem>
<asp:ListItem Value="2">Investor</asp:ListItem>
<asp:ListItem Value="3">Administrator</asp:ListItem>
</asp:DropDownList>

我是否缺少某些东西,因为我认为它会自动执行所选索引更改的任务。先感谢您

4

1 回答 1

2

放入AutoPostback=true下拉列表中。没有那个不会触发 onselectedindexchanged="DropDownList1_SelectedIndexChanged"

我希望有帮助。

于 2013-06-20T16:39:27.273 回答