|
|
|
.NET ถามเรื่องเกี่ยวกับ GridView ค่ะ ASP.NET C# |
|
|
|
|
|
|
|
ประกาศ field
Code (C#)
private string _key;
กำหนด initial
Code (C#)
protected void Page_Load(object sender, EventArgs e)
{
_key = string.Empty;
}
rowdatabound
Code (C#)
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.RowType == RowType.DataRow)
{
string name = string.Format("{0}{1}", e.Row.Cells[0].Text, e.Row.Cells[1].Text);
if (_key == name)
{
e.Row.Cells[0].Text = string.Empty;
e.Row.Cells[1].Text = string.Empty;
}
else
{
_key = name;
}
}
ประมาณนี้แหละ เขียนสด
แต่ข้อมูลต้อง sort นะ ถึงจะได้
|
|
|
|
|
Date :
2012-12-13 08:23:46 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|