DropDownList SelectedIndexChanged事件回发后没法选中值!
这是我的部分代码!//填充房间类型publicvoidBindRoomType(){DDSelectRoomtype.DataSource=RoomTypeManager...
这是我的部分代码!
//填充房间类型
public void BindRoomType()
{
DDSelectRoomtype.DataSource = RoomTypeManager.DispalyManager();
DDSelectRoomtype.DataTextField = "TypeName";
DDSelectRoomtype.DataValueField = "TypeID";
DDSelectRoomtype.DataBind();
ListItem item = new ListItem();
item.Text = "--选择--";
item.Value = "-1";
DDSelectRoomtype.Items.Insert(0, item);
}
//根据选中值回绑数据
protected void DDSelectRoomtype_SelectedIndexChanged(object sender, EventArgs e)
{
int typeid = Convert.ToInt32(this.DDSelectRoomtype.SelectedValue);
if (typeid == -1)
{
typeid = 0;
GetBaind();
}
else
{
this.DLRoomtype.DataSource = RoomManager.DispaytypeManger(typeid);
this.DLRoomtype.DataBind();
}
}
这是页面中的代码
<asp:DropDownList ID="DDSelectRoomtype" runat="server" Height="23px"
Width="90px" DataTextField="TypeName"
DataValueField="TypeID" AutoPostBack="True"
OnSelectedIndexChanged="DDSelectRoomtype_SelectedIndexChanged">
</asp:DropDownList>
当触发事件后只能选中第一个值。
其他的没法选中!!
我郁闷了一天了。
就是解决不了 。。
BindRoomType填充房间类型在如果在Page_Load,,我起先设置他的AutoPostBack属性为false,结果,没反应;然后我又把AutoPostBack属性设为true,这次倒是有反应了,但这样一来,因为页面刷新了一下,DropDownList的被选项又变成第一个了 展开
//填充房间类型
public void BindRoomType()
{
DDSelectRoomtype.DataSource = RoomTypeManager.DispalyManager();
DDSelectRoomtype.DataTextField = "TypeName";
DDSelectRoomtype.DataValueField = "TypeID";
DDSelectRoomtype.DataBind();
ListItem item = new ListItem();
item.Text = "--选择--";
item.Value = "-1";
DDSelectRoomtype.Items.Insert(0, item);
}
//根据选中值回绑数据
protected void DDSelectRoomtype_SelectedIndexChanged(object sender, EventArgs e)
{
int typeid = Convert.ToInt32(this.DDSelectRoomtype.SelectedValue);
if (typeid == -1)
{
typeid = 0;
GetBaind();
}
else
{
this.DLRoomtype.DataSource = RoomManager.DispaytypeManger(typeid);
this.DLRoomtype.DataBind();
}
}
这是页面中的代码
<asp:DropDownList ID="DDSelectRoomtype" runat="server" Height="23px"
Width="90px" DataTextField="TypeName"
DataValueField="TypeID" AutoPostBack="True"
OnSelectedIndexChanged="DDSelectRoomtype_SelectedIndexChanged">
</asp:DropDownList>
当触发事件后只能选中第一个值。
其他的没法选中!!
我郁闷了一天了。
就是解决不了 。。
BindRoomType填充房间类型在如果在Page_Load,,我起先设置他的AutoPostBack属性为false,结果,没反应;然后我又把AutoPostBack属性设为true,这次倒是有反应了,但这样一来,因为页面刷新了一下,DropDownList的被选项又变成第一个了 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询