<% TransName(DataBinder.EvalContainer.DataItem, "Name")) %>
Cs中:
public string TransName(string sTitle)
      {
string strEnd;
if(sTitle.Length>TitleMaxLen)
        strEnd=sTitle.Substring(0,TitleMaxLen-2)+"...";
         else
        strEnd=sTitle;
         Response.Write(strEnd);      }