控制GridView內的圖片顯示
在小舖看到有人了這個自己也做了一下測試
http://www.blueshop.com.tw/board/fum20041006161839lrj/BRD20110321115817B9E.html
但是我比較懶,所以只判斷大於60而已
資料庫內值
頁前(簡單用精靈拉一拉而已)
頁後輸出時處理
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
int i =0;
protected void Page_Load(object sender, EventArgs e)
{
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (i >= 1 && e.Row.Cells[3].Text.ToString() !=" " )
{
if (int.Parse(e.Row.Cells[3].Text.ToString()) < 60)
{
((Image)e.Row.FindControl("Image1")).ImageUrl = "~/png-0477.png";
}
else
{
((Image)e.Row.FindControl("Image1")).ImageUrl = "~/png-0484.png";
}
}
else
{
i++;
}
}
}
輸出大於60 顯示哭臉 低於的則是笑臉
大家一起加入blogads 賺零用錢!!