asp.net 中 datagrid 绑定字段使用left(截取
VS2003.net(ASP.NET-VB.NET)中datagrid绑定字段使用left(截取是这样的,数据库中一个字段列的数据太多了,可以截取前一部分显示到绑定的da...
VS2003.net(ASP.NET-VB.NET) 中 datagrid 绑定字段使用left(截取
是这样的,数据库中一个字段列的数据太多了,可以截取前一部分显示到绑定的datagrid 中吗?怎么做呢? 展开
是这样的,数据库中一个字段列的数据太多了,可以截取前一部分显示到绑定的datagrid 中吗?怎么做呢? 展开
展开全部
2种方法,第一:在绑定的时候有事件,这个时候可以处理.
第二:在绑定之后处理,这样会比较方便.
在cs 文件中写一个public 的方法
/// <summary>
/// 从字符串的指定位置截取指定长度的子字符串
/// </summary>
/// <param name="str">原字符串</param>
/// <param name="startIndex">子字符串的起始位置</param>
/// <param name="length">子字符串的长度</param>
/// <returns>子字符串</returns>
public static string CutString(string str,int startIndex,int length)
{
if (startIndex >= 0)
{
if (length < 0)
{
length = length * -1;
if (startIndex - length<0)
{
length = startIndex;
startIndex = 0;
}
else
{
startIndex = startIndex - length;
}
}
if (startIndex > str.Length)
{
return "";
}
}
else
{
if (length < 0)
{
return "";
}
else
{
if (length + startIndex > 0)
{
length = length + startIndex;
startIndex = 0;
}
else
{
return "";
}
}
}
if (str.Length - startIndex < length)
{
length = str.Length - startIndex;
}
try
{
return str.Substring(startIndex,length);
}
catch
{
return str;
}
}
,然后再grid的前台源代码中找到<%#DataBinder.Eval()%> 加入这个函数
<%#CutString(DataBinder.Eval().ToString(),12)%> 这样就可以截取了
第二:在绑定之后处理,这样会比较方便.
在cs 文件中写一个public 的方法
/// <summary>
/// 从字符串的指定位置截取指定长度的子字符串
/// </summary>
/// <param name="str">原字符串</param>
/// <param name="startIndex">子字符串的起始位置</param>
/// <param name="length">子字符串的长度</param>
/// <returns>子字符串</returns>
public static string CutString(string str,int startIndex,int length)
{
if (startIndex >= 0)
{
if (length < 0)
{
length = length * -1;
if (startIndex - length<0)
{
length = startIndex;
startIndex = 0;
}
else
{
startIndex = startIndex - length;
}
}
if (startIndex > str.Length)
{
return "";
}
}
else
{
if (length < 0)
{
return "";
}
else
{
if (length + startIndex > 0)
{
length = length + startIndex;
startIndex = 0;
}
else
{
return "";
}
}
}
if (str.Length - startIndex < length)
{
length = str.Length - startIndex;
}
try
{
return str.Substring(startIndex,length);
}
catch
{
return str;
}
}
,然后再grid的前台源代码中找到<%#DataBinder.Eval()%> 加入这个函数
<%#CutString(DataBinder.Eval().ToString(),12)%> 这样就可以截取了
展开全部
/// <summary>
/// 检索出数据,对一个数据字段进行字数截取,然后绑定到GridView;
/// 字段截取默认添加...三个字符,CutAdd属性进行设置
/// </summary>
/// <param name="GridViewName">要进行绑定的GridView ID</param>
/// <param name="cutName">进行字符截取的字段名称</param>
/// <param name="cutNum">截取保留字符数</param>
public void GridViewColumnCut(GridView GridViewName, string cutName, int cutNum)
{
DataSetFill();
foreach (DataRow i in ds.Tables[0].Rows)
{
if (i[cutName].ToString().Length > cutNum)
{
i[cutName] = i[cutName].ToString().Substring(0, cutNum) + cutAdd;
}
}
GridViewName.DataSource = ds;
GridViewName.DataBind();
ds.Dispose();
clear();
}
/// <summary>
/// 检索出数据,对一个数据字段进行字数截取,然后绑定到DataList;
/// 字段截取默认添加...三个字符,CutAdd属性进行设置
/// </summary>
/// <param name="dl">要进行绑定的DataList ID</param>
/// <param name="cutName">进行字符截取的字段名称</param>
/// <param name="cutNum">截取保留字符数</param>
public void DataListColumnCut(DataList dl, string cutName, int cutNum)
{
DataSetFill();
foreach (DataRow i in ds.Tables[0].Rows)
{
if (i[cutName].ToString().Length > cutNum)
{
i[cutName] = i[cutName].ToString().Substring(0, cutNum) + cutAdd;
}
}
dl.DataSource = ds;
dl.DataBind();
ds.Dispose();
clear();
}
/// 检索出数据,对一个数据字段进行字数截取,然后绑定到GridView;
/// 字段截取默认添加...三个字符,CutAdd属性进行设置
/// </summary>
/// <param name="GridViewName">要进行绑定的GridView ID</param>
/// <param name="cutName">进行字符截取的字段名称</param>
/// <param name="cutNum">截取保留字符数</param>
public void GridViewColumnCut(GridView GridViewName, string cutName, int cutNum)
{
DataSetFill();
foreach (DataRow i in ds.Tables[0].Rows)
{
if (i[cutName].ToString().Length > cutNum)
{
i[cutName] = i[cutName].ToString().Substring(0, cutNum) + cutAdd;
}
}
GridViewName.DataSource = ds;
GridViewName.DataBind();
ds.Dispose();
clear();
}
/// <summary>
/// 检索出数据,对一个数据字段进行字数截取,然后绑定到DataList;
/// 字段截取默认添加...三个字符,CutAdd属性进行设置
/// </summary>
/// <param name="dl">要进行绑定的DataList ID</param>
/// <param name="cutName">进行字符截取的字段名称</param>
/// <param name="cutNum">截取保留字符数</param>
public void DataListColumnCut(DataList dl, string cutName, int cutNum)
{
DataSetFill();
foreach (DataRow i in ds.Tables[0].Rows)
{
if (i[cutName].ToString().Length > cutNum)
{
i[cutName] = i[cutName].ToString().Substring(0, cutNum) + cutAdd;
}
}
dl.DataSource = ds;
dl.DataBind();
ds.Dispose();
clear();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询