C#如何让gridview中多余的文字用“………”代替呀??【求大家帮忙看看,谢谢。。。。】
我用下面的这段语句为什么不行呢?如何解决?protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEven...
我用下面的这段语句为什么不行呢?如何解决?
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
for (int i = 0; i < this.GridView1.Columns.Count; i++)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string Str = e.Row.Cells[i].Text; //第i列内容
if (Str.Length > 2) //第i列内容大于2个
{
e.Row.Cells[i].Text = Str.Substring(0, 2) + "..."; //截取2个显示,其他用“...”号代替
e.Row.Cells[i].ToolTip = Str;//鼠标放上去显示全部信息
}
}
}
} 展开
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
for (int i = 0; i < this.GridView1.Columns.Count; i++)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string Str = e.Row.Cells[i].Text; //第i列内容
if (Str.Length > 2) //第i列内容大于2个
{
e.Row.Cells[i].Text = Str.Substring(0, 2) + "..."; //截取2个显示,其他用“...”号代替
e.Row.Cells[i].ToolTip = Str;//鼠标放上去显示全部信息
}
}
}
} 展开
1个回答
展开全部
我记得不是循环,直接对e进行操作。
01if (e.Row.RowType == System.Web.UI.WebControls.DataControlRowType.DataRow)
02 {
03 switch (e.Row.Cells[1].Text)
04 {
05 case "1": e.Row.Cells[1].Text = "Java编程"; break;
06 case "2": e.Row.Cells[1].Text = "C#编程"; break;
07 case "3": e.Row.Cells[1].Text = "麦子编程"; break;
08 default: break;
09 }
10 }
具体参考上方。框架自动遍历每个row让你操作的。
01if (e.Row.RowType == System.Web.UI.WebControls.DataControlRowType.DataRow)
02 {
03 switch (e.Row.Cells[1].Text)
04 {
05 case "1": e.Row.Cells[1].Text = "Java编程"; break;
06 case "2": e.Row.Cells[1].Text = "C#编程"; break;
07 case "3": e.Row.Cells[1].Text = "麦子编程"; break;
08 default: break;
09 }
10 }
具体参考上方。框架自动遍历每个row让你操作的。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询