DataKeyField
你那控件有这个东西吗?没用过GridView,估计差不多的东西吧。。有这个属性的话这个属性里面填主键的名字
事件里面你参考下这个:
private void DataGrid1_ItemCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
if(e.CommandName=="LB")
{
string bianhao=DataGrid1.DataKeys[e.Item.ItemIndex].ToString();
this.Response.Redirect("WebForm2.aspx?bianhao="+bianhao);
}
}