@{
string sa9 = ViewBag.pclass.Titles(1569);
@sa9;
}
public string Titles(int ID)
{
string Name = "";
L_News oL_News = new L_News();
oL_News = oBLLNews.GetModel(ID);
if (oL_News != null)
{
Name = oL_News.Title;
}
return Name;
}