[求助]DropDownList使用问题
请大家帮我看看,如何实现下面的内容上面的DropDownList是查询时候用的
当我选择增加数据的时候
下面的DropDownList怎样才能自动显示的是上一个DropDownList的内容,而不需要用下拉来选择数据!
不是,是楼主在绑定数据的时候没有放在if(!isPostBack){}里面。所以,每次增加数据完后刷新页面时,给下拉框重新绑定了数据,索引还原到了0.建议放在ispostback里面绑定数据。
[新增网络设备] 那个“窗口”如果是一个层(非服务器控件)的话,
那是不刷新页的,可用客户端脚本来使两个 DropDownList 的值相等:
VB.NET:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If (Not IsPostBack) Then
DropDownList1.Attributes("onchange") = "javascript: DropDownList2.selectedIndex = DropDownList1.selectedIndex;"
End If
End Sub
C#:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DropDownList1.Attributes["onchange"] = "javascript: DropDownList2.selectedIndex = DropDownList1.selectedIndex;";
}
}