asp.net中用Eval绑定数据源,对绑定输出的值怎么进行操作?
例如:<%#Eval("Address")%>输出来的结果一般都是很长的字符串,但我不想它完全输出,只想它显示几个字,其他的都不显示出来(我想应该可以用SubString...
例如:<%#Eval("Address")%> 输出来的结果一般都是很长的字符串,但我不想它完全输出,只想它显示几个字,其他的都不显示出来(我想应该可以用SubString去截取,但是不知道在这里怎么弄),怎么弄,求大神指点!!!!!!!
展开
1个回答
展开全部
给你粘一个我们开发用的方法
public static string CutString(string inputString, int len, string str_end_add)
{
ASCIIEncoding ascii = new ASCIIEncoding();
int tempLen = 0;
string tempString = "";
byte[] s = ascii.GetBytes(inputString);
for (int i = 0; i < s.Length; i++)
{
if ((int)s[i] == 63)
{
tempLen += 2;
}
else
{
tempLen += 1;
}
try
{
tempString += inputString.Substring(i, 1);
}
catch
{
break;
}
if (tempLen > len)
{
break;
}
}
//如果截过则加上半个省略号
byte[] mybyte = System.Text.Encoding.Default.GetBytes(inputString);
if (mybyte.Length > len)
tempString = tempString.Substring(0, tempString.Length - 1) + str_end_add;
return tempString;
}
直接使用即可
希望对你有帮助
public static string CutString(string inputString, int len, string str_end_add)
{
ASCIIEncoding ascii = new ASCIIEncoding();
int tempLen = 0;
string tempString = "";
byte[] s = ascii.GetBytes(inputString);
for (int i = 0; i < s.Length; i++)
{
if ((int)s[i] == 63)
{
tempLen += 2;
}
else
{
tempLen += 1;
}
try
{
tempString += inputString.Substring(i, 1);
}
catch
{
break;
}
if (tempLen > len)
{
break;
}
}
//如果截过则加上半个省略号
byte[] mybyte = System.Text.Encoding.Default.GetBytes(inputString);
if (mybyte.Length > len)
tempString = tempString.Substring(0, tempString.Length - 1) + str_end_add;
return tempString;
}
直接使用即可
希望对你有帮助
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询