判断过多最好在后台写方法前台 aspx:
<%# GetResult(Convert.ToInt32(Eval("ifcheck")))%>后台 aspx.cs:protected string GetResult(int ifcheck)
{
    string result = string.Empty;
    switch (ifcheck)
    {
        case -1:
            result = "审核未通过";
        case 0:
            result = "未审核";
        case 1:
            result = "审核通过";
    }
    return result;
}