当需要在gridview中单击“选择”时,取出这条记录的值,用帮它用时,可以做如下动作:
int lkbt = GridView1.SelectedIndex; //设置一个int类型的变量来存储被选中记录的索引
string tt=GridView1.Rows[lkbt].Cells[1].Text; //通过索引找相对应的记录,再从这条记录中取相对应列的值
如果通过这个值去数据库中找相应信息,可以是如下事例:
SqlDataSource1.SelectCommand="SELECT * FROM 笔记本 where [编号]="+tt;
当在GridView中绑定了linkbutton控件时,想要通过单击linkbutton来获取被单击行的索引,则可以做如下写法:
为linktutton的单击事件添加如下方法即可:
protected void show_product(object sender, EventArgs e)
{
int a = ((GridViewRow)((LinkButton)sender).NamingContainer).RowIndex; //获取被单击的LINKTUTTON在GRIDVIEW中的行索引
LinkButton lb1 = (LinkButton)GridView1.Rows[a].FindControl("lklist"); //通过该行索引查找该行id为lklist的likbutton控件
Label lb = (Label)GridView1.Rows[a].FindControl("lbid"); //通过该行索引查找该行id为lbid的lable控件
Response.Redirect("~/showproduct.aspx?分类名=" + lb1.Text + "&型号=" + lb.Text);
}
int lkbt = GridView1.SelectedIndex; //设置一个int类型的变量来存储被选中记录的索引
string tt=GridView1.Rows[lkbt].Cells[1].Text; //通过索引找相对应的记录,再从这条记录中取相对应列的值
如果通过这个值去数据库中找相应信息,可以是如下事例:
SqlDataSource1.SelectCommand="SELECT * FROM 笔记本 where [编号]="+tt;
当在GridView中绑定了linkbutton控件时,想要通过单击linkbutton来获取被单击行的索引,则可以做如下写法:
为linktutton的单击事件添加如下方法即可:
protected void show_product(object sender, EventArgs e)
{
int a = ((GridViewRow)((LinkButton)sender).NamingContainer).RowIndex; //获取被单击的LINKTUTTON在GRIDVIEW中的行索引
LinkButton lb1 = (LinkButton)GridView1.Rows[a].FindControl("lklist"); //通过该行索引查找该行id为lklist的likbutton控件
Label lb = (Label)GridView1.Rows[a].FindControl("lbid"); //通过该行索引查找该行id为lbid的lable控件
Response.Redirect("~/showproduct.aspx?分类名=" + lb1.Text + "&型号=" + lb.Text);
}