|
|
|
สอบถามเรื่องของ Listview ครับ ว่า ItemDataBound อยากทำกิจกรรมกับ Row ที่หาร 3 ลงตัว ต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
Code (C#)
if(int%3==0)
{
//
}
ทำใน ItemDataBound สร้างตัวแปร int ก็ได้แล้วครับ
|
|
|
|
|
Date :
2013-10-19 19:59:16 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำแบบนี้ ก็ยังไม่ออกอ่ะครับ อยากให้ช่วยแนะนำทีครับ ขอบคุณอีกครั้งครับ
Code (C#)
protected void ListViewNewComming_ItemDataBound(Object sender, ListViewItemEventArgs e)
{
int nCount = 1;
Label lblLiClass = (Label)(e.Item.FindControl("lblLiClass"));
if (lblLiClass != null)
{
if (nCount % 3 == 0)
{
lblLiClass.Text = "<li class='one_third first'>";
}
else
{
lblLiClass.Text = "<li class='one_third'>";
}
nCount = nCount + 1;
}
}
|
ประวัติการแก้ไข 2013-10-20 02:26:21
|
|
|
|
Date :
2013-10-19 23:38:50 |
By :
yatard |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับพี่
|
|
|
|
|
Date :
2013-10-20 12:06:01 |
By :
yatard |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไป
|
|
|
|
|
Date :
2013-10-21 06:26:13 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|