本文介绍了指定的参数超出了有效值的范围。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试添加图片onrowdatabound
我尝试过:
I tried adding image onrowdatabound
What I have tried:
string imgAsc = @" <img src='../Images\asc.png' title='Ascending' />";
string imgDes = @" <img src='../Images\des.png' title='Descendng' />";
if (e.Row.RowType == DataControlRowType.Header)
{
foreach (TableCell cell in e.Row.Cells)
{
LinkButton lbSort = (LinkButton)cell.Controls[0];
if (lbSort.Text == GridView1.SortExpression)
{
if (GridView1.SortDirection == SortDirection.Ascending)
lbSort.Text += imgAsc;
else
lbSort.Text += imgDes;
}
}
}
推荐答案
这篇关于指定的参数超出了有效值的范围。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!