gridview在鼠标点击行时,怎么获取某列的值

2024-11-01 03:25:46
推荐回答(2个)
回答1:

我用的是asp.net,GridView实现它的RowDataBound事件,具体看代码,希望可以帮到你:
前台:












HeaderStyle-BackColor="LightSkyBlue" />
HeaderStyle-BackColor="LightSkyBlue" />
HeaderStyle-BackColor="LightSkyBlue" />







后台代码:
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
List list = new List();
list.Add(new Person("001", "张三"));
list.Add(new Person("002", "李四"));
list.Add(new Person("003", "王五"));
list.Add(new Person("004", "赵六"));
list.Add(new Person("005", "何七"));
GridView1.DataSource = list;
GridView1.DataBind();
}

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int row_index = e.Row.RowIndex + 1;
e.Row.Attributes.Add("onclick", "getId(" + row_index + ");");
}
}
}

class Person
{
public Person(string id, string name)
{
ID = id;
Name = name;
}

private string id;

public string ID
{
get { return id; }
set { id = value; }
}
private string name;

public string Name
{
get { return name; }
set { name = value; }
}
private string tel;

public string Tel
{
get { return tel; }
set { tel = value; }
}
}

回答2:

我用的是asp.net,GridView实现它的RowDataBound事件,具体看代码,希望可以帮到你:
前台:












HeaderStyle-BackColor="LightSkyBlue" />
HeaderStyle-BackColor="LightSkyBlue" />
HeaderStyle-BackColor="LightSkyBlue" />







后台代码:
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
List list = new List();
list.Add(new Person("001", "张三"));
list.Add(new Person("002", "李四"));
list.Add(new Person("003", "王五"));
list.Add(new Person("004", "赵六"));
list.Add(new Person("005", "何七"));
GridView1.DataSource = list;
GridView1.DataBind();
}

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int row_index = e.Row.RowIndex + 1;
e.Row.Attributes.Add("onclick", "getId(" + row_index + ");");
}
}
}

class Person
{
public Person(string id, string name)
{
ID = id;
Name = name;
}

private string id;

public string ID
{
get { return id; }
set { id = value; }
}
private string name;

public string Name
{
get { return name; }
set { name = value; }
}
private string tel;

public string Tel
{
get { return tel; }
set { tel = value; }
}
}