在一个网页上我使用服务器控件DropDownlist比较多,假如对方是光纤的,倒也快,但是对方是拨号的,就慢死了,我现在DropDownlist 每一个控件都使用 SelectedIndexChanged 事件,因为2号DropDownlist控件是根据1号 DropDownlist 值来筛选内容, 具体1号DropDownlist控件SelectedIndexChanged 事件代码如下
DataView dv2 = new DataView((DataTable)ViewState["dt"]);
dv2.RowFilter = ("parentcode='" + txtga01.SelectedValue.ToString() + "'");
txtga02.DataSource = dv2;
txtga02.DataTextField = "cinvcname";
txtga02.DataValueField = "no";
txtga02.DataBind();
相信我改成javascript代码肯定就快,问题是如何改呢,请大神指点,谢谢.
慕姐4208626
翻翻过去那场雪