namespace BLL
{
public class Strings
{
public Strings() { }
public static string CutString(string inputString, int len)
{
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 += "…";
return tempString;
}
}
}
5.4 Web层
Web层即表现层(UI):通俗讲就是展现给用户的界面,即用户在使用一个系统的时候他的所见所得,也是就本系统中的NewsSystem项目。
5.4.1网站浏览者的显示页面
首页主要有一个导航,浏览者可以通过导航访问国内教学网站,国外教学网站,。也可以预览一些最新教学文章。用户可以通过分别访问国内教学网站页、国际教学网站页、并且查找自己喜欢的一些教学内容。
上一页 [1] [2] [3] [4] [5] [6] [7] [8] 下一页