The following is the first section in the first row of a table on one of my ASP MVC3 Index pages. I\'ve stepped through the code when that page loads, and can see that the
The DisplayText is synonomous for Model.PropertyName.. so Model.PropertyName = @Html.DisplayText('PropertyName')
So if CE is not an attribute of your model, and you are just trying to output raw text than just replace that statement with the raw text:
if (item.TableName.Equals("AgentContEd"))
{
CE
}