我的问题,我想更改selectedindex下拉列表页面加载事件但不更改索引。我在更新面板中的下拉列表。
HTML CODE
<td class="col-xs-3">
<asp:UpdatePanel ID="UpdatePanel7" runat="server">
<ContentTemplate>
<asp:DropDownList ID="dropCountry" CssClass="form-control input-sm" runat="server" EnableViewState="true" AutoPostBack="True" OnSelectedIndexChanged="dropCountry_SelectedIndexChanged"></asp:DropDownList>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="dropCountry" EventName="SelectedIndexChanged" />
</Triggers>
</asp:UpdatePanel>
</td>
c#服务器代码
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
dropCountry.SelectedIndex = 3;
}
}
但是selectedindex设置为0.你能帮帮我吗?