protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
{
GridViewRow row = GridView1.SelectedRow;
this.txtno.Text = HttpUtility.HtmlDecode(row.Cells[1].Text);
this.txtha01.Text = HttpUtility.HtmlDecode(row.Cells[2].Text);
this.txtha02.SelectedItem.Text = HttpUtility.HtmlDecode(row.Cells[3].Text);
}
以上代码只是想把GridView1内的值,赋给页面上的textbox控件,实际上textbox控件很多,所以GridView列也很多, 每次用户(跨省用户) 点击一下,都要回送服务器一下, 造成速度很慢,有没有办法,不利用这个事件,利用页面上的javascript 事件来做呢,那样页面不回发,只在客户端上激发,估计速度不错的.
holdtom
紫衣仙女