|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。datagrid在利用DataGrid时常常碰到单位格中的内容太长而招致文本的换行,如许使原本简便的页面看上往十分乱。上面的办法能够办理这个成绩。
当单位格的内容超越指定的长度后,截往过剩的字,然后在鼠标停止在某个单位格上时,就显现全体的内容。
此办法有个弱点:每一个单元格都是指定长度的。
//某个datagrid的ItemDataBound事务。
//上半部分设置鼠标悬停时的背景致
//下半部分才起感化
publicvoidDataGrid1_ItemDataBound(objectsender,DataGridItemEventArgse)
{
if(e.Item.ItemType==ListItemType.Item||e.Item.ItemType==ListItemType.AlternatingItem)
{
Colorcolor=this.DataGrid1.SelectedItemStyle.ForeColor;
stringforeColor=string.Format("#{0:X2}{1:X2}{2:X2}",color.R,color.G,color.B);
color=this.DataGrid1.SelectedItemStyle.BackColor;
stringbackColor=string.Format("#{0:X2}{1:X2}{2:X2}",color.R,color.G,color.B);
//假如没有设置选中项的色彩,则不设置鼠标效果
if(foreColor!="#000000"||backColor!="#000000")
{
e.Item.Attributes.Add("onmou搜索引擎优化ver",string.Format("oldItemForeColor=this.style.color;this.style.color={0};oldItemBackColor=this.style.backgroundColor;this.style.backgroundColor={1}",foreColor,backColor));
e.Item.Attributes.Add("onmou搜索引擎优化ut","this.style.color=oldItemForeColor;this.style.backgroundColor=oldItemBackColor;");
}
e.Item.Cells[1].Text="<divstyle=text-overflow:ellipsis;overflow:hidden;width:80px;title="+e.Item.Cells[1].Text+"><nobr>"+e.Item.Cells[1].Text+"</nobr></div>";
e.Item.Cells[2].Text="<divstyle=text-overflow:ellipsis;overflow:hidden;width:80px;title="+e.Item.Cells[2].Text+"><nobr><aclass=lanhref="+this.Request.ApplicationPath+@"/UpLoadFile/"+System.IO.Path.GetFileName(e.Item.Cells[7].Text)+">"+e.Item.Cells[2].Text+"</a></nobr></div>";
e.Item.Cells[3].Text="<divstyle=text-overflow:ellipsis;overflow:hidden;width:80px;title="+e.Item.Cells[3].Text+"><nobr>"+e.Item.Cells[3].Text+"</nobr></div>";
e.Item.Cells[4].Text="<divstyle=text-overflow:ellipsis;overflow:hidden;width:80px;title="+e.Item.Cells[4].Text+"><nobr>"+e.Item.Cells[4].Text+"</nobr></div>";
e.Item.Cells[5].Text="<divstyle=text-overflow:ellipsis;overflow:hidden;width:90px;title="+e.Item.Cells[5].Text+"><nobr>"+e.Item.Cells[5].Text+"</nobr></div>";
e.Item.Cells[6].Text="<divstyle=text-overflow:ellipsis;overflow:hidden;width:90px;title="+e.Item.Cells[6].Text+"><nobr>"+e.Item.Cells[6].Text+"</nobr></div>";
}
}
</p>asp是基于web的一种编程技术,可以说是cgi的一种。它可以完成以往cgi程序的所有功能,如计数器、留言簿、公告板、聊天室等等。 |
|