มานเป็นโค้ดphpไม่ใช้หรอค่ะจะขอโค้ดเปลี่ยนสีแถวเป็นโค้ดaspค่ะ
Code (ASP)
<table width="286" border="1">
<tr>
<td>Column1</td>
<td>Column1</td>
<td>Column1</td>
</tr>
<%
Dim i
Dim BgColor
For i = 0 To 10
If i Mod 2 = 0 Then
BgColor="#CCCCCC"
Else
BgColor="#FFFFFF"
End IF
%>
<tr bgcolor="<%=BgColor%>">
<td>Rows </td>
<td>Rows </td>
<td>Rows </td>
</tr>
<%
Next
%>
</table>
Date :
2010-09-20 08:55:20
By :
webmaster
อันนี้เป็นเม้าลากผ่านนะ
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("OnMouseOver", "style.backgroundColor='LIGHTBLUE'");
e.Row.Attributes.Add("OnMouseOut", "style.backgroundColor='white'");
}
}
----------------------------------------------------------------------------------------------------------------
ใส่สีไห้ GRID VIEW
protected void gvProducts_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int ProductInStock;
int ReorderLevel;
ProductInStock = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "UnitsInStock"));
ReorderLevel = Convert.ToInt32(DataBinder.Eval(e.Row.DataItem, "ReorderLevel"));
if ((ProductInStock < ReorderLevel)) //แจ้งเตือนของในสตอกไกล้หมด
{
e.Row.BackColor = Color.Red;
}
}
}
ปล.1 เพิ่งหัดใช้เหมือนกัน หาๆเอาในนี้แหละ
ปล. 2 เราจะตั้งกะทู้ถ้ารู้ช่วยตอบด้วยนะ อิอิ
Date :
2010-09-20 10:50:30
By :
Patzy
Load balance : Server 00