我有一个下拉列表,允许管理员将用户分配给一个角色,它应该在索引发生变化时自动执行,但不幸的是,在我点击一个完全不相关的复选框之前它没有做任何事情。这是代码
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>
我是否遗漏了一些东西,因为我认为它会自动执行所选索引更改的任务。提前谢谢
答案 0 :(得分:2)
将AutoPostback=true
放入下拉列表中。如果没有,则不会触发onselectedindexchanged="DropDownList1_SelectedIndexChanged"
我希望有所帮助。