protected void gvdet_DataBound(object sender, GridViewRowEventArgs e)
{
string employeeName = dsOLDData.SelectedItem.Text; -- ERROR HERE :(
if (e.Row.RowType == DataControlRowType.DataRow)
{
foreach (TableCell c in e.Row.Cells)
{
if (c.Controls[0] is DataBoundLiteralControl)
{
DataBoundLiteralControl ctl = (DataBoundLiteralControl)c.Controls[0];
if (ctl.Text.Contains(employeeName))
{
c.BackColor = System.Drawing.Color.Yellow;
c.ForeColor = System.Drawing.Color.Blue;
}
}
}
}
}
}
ERROR: 錯誤2「System.Web.UI.WebControls.LinqDataSource」不包含關於「的SelectedItem」和沒有擴展方法「的SelectedItem」接受型的System.Web.UI的「第一自變量的定義。 WebControls.LinqDataSource'可以找到(你是否缺少使用指令或程序集引用?)錯誤:缺少使用指令或程序集引用?
什麼是dsOLDData?它是一個數據集?下拉列表?我們需要更多細節,否則我們無法幫助您。 – 2009-08-07 19:06:40
嗨大衛,我很欣賞編輯。希望我能得到一個有用的解決方案。 – Yves 2009-08-07 19:07:01
是的大衛,它是一個下拉列表 – Yves 2009-08-07 19:07:43