当我按下按钮时,我尝试保存DropDownList的值,但是当我按此按钮时,它会显示刷新页面并且永远得到DropDownList的索引0。 这是来自.cs:
的方法btnAccept_Click
的代码
if (comboOpciones.SelectedIndex == 1)
{
if (serv.modifyMovie(comboModifica.selectedIndex + 1, textboxTitulo.Text, Convert.ToInt32(textboxAño.Text), textBoxGenero.Text, textboxNacionalidad.Text, 0) == 1)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "scriptkey", "<script>alert(' Succesful Modify ');</script>");
}
else
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "scriptkey", "<script>alert(' Unsuccesful modify');</script>");
}
}
值&#39; comboModifica.selectedIndex&#39;始终返回索引0
这是我的网页表格ASP的代码:
<table class="centrada">
<tr>
<td>
</td>
<td>
<p>¿Qué desea hacer?</p>
<asp:DropDownList ID="comboOpciones" runat="server" AutoPostBack="True" OnSelectedIndexChanged="comboOpciones_SelectedIndexChanged">
<asp:ListItem>Añadir</asp:ListItem>
<asp:ListItem>Modificar</asp:ListItem>
</asp:DropDownList>
</td>
<td>
</td>
<td>
<div runat="server" id="divModificar">
<p>Introduce ID de película a modificar:</p>
<asp:DropDownList ID="comboModifica" runat="server"></asp:DropDownList>
</div>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="Nuevo título:"></asp:Label>
</td>
<td>
<asp:TextBox ID="textboxTitulo" runat="server" MaxLength="30"></asp:TextBox>
</td>
<td>
<asp:Label ID="Label2" runat="server" Text="Año:"></asp:Label>
</td>
<td>
<asp:TextBox ID="textboxAño" runat="server" MaxLength="4"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label3" runat="server" Text="Género:"></asp:Label>
</td>
<td>
<asp:TextBox ID="textBoxGenero" runat="server" MaxLength="15"></asp:TextBox>
</td>
<td>
<asp:Label ID="Label4" runat="server" Text="Nacionalidad:"></asp:Label>
</td>
<td>
<asp:TextBox ID="textboxNacionalidad" runat="server" MaxLength="25"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label5" runat="server" Text="Director:"></asp:Label>
</td>
<td>
<asp:DropDownList ID="comboDirectores" runat="server"></asp:DropDownList>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td colspan="4">
<asp:Button ID="btnAccept" runat="server" Text="Enviar" AutoPostBack="false" OnClick="btnAccept_Click"/>
</td>
</tr>
</table>
如何获取DropDownList的值?
答案 0 :(得分:2)
你的问题在于,每个回发都会初始化组合框。所以你需要确定它是否是回发。仅当它不是回发时才初始化组合框。设BindMyCbo()
是将所有值绑定到Required comboBox的方法,此处为comboModifica
。然后,只有在页面加载不是PostBack时才需要调用该方法。所以方法调用(在你的page_load事件中)将如下所示:
if (!IsPostBack)
{
BindMyCbo();
//Rest of code
}
因此组合框在页面加载时初始化并在回发后保持相同