0

填充Repeater时我得到NullReferenceException。某些产品功能为空。我在使用UrlDecode()和kill()方法时使用了IsNullControl()方法来避免异常。但我仍然得到错误。

   <asp:Repeater ID="rptProducts" runat="server">
        <ItemTemplate>
                <div>
                    <%# Eval("ProductName")%>
                </div>
                <div>
                    <%# kill(Server.UrlDecode(IsNullControl(Eval("ProductFeature").ToString())))%>
                </div>
        </ItemTemplate>
    </asp:Repeater>

    try
    {
        ProductsDataContext pdc = new ProductsDataContext();
        var query = from p in pdc.Products
                    select p;

        rptProducts.DataSource = query;
        rptProducts.DataBind();
    }
    catch (Exception ex)
    {
        Response.Write(ex.Message);
    }

    public static string kill(string val)
    {
        val = val.Replace("<ul>", " ");
        val = val.Replace("<li>", " ");
        val = val.Replace("</li>", "<br/>");
        val = val.Replace("</ul>", " ");
        return val.ToString();
    }

    public static string IsNullControl(string val)
    {
        string space = " ";
        if (string.IsNullOrEmpty(val))
        {
            val = space;
        }
        return space;
    }
4

2 回答 2

2

在此代码片段中检查 null 之前,您首先将字段转换为字符串 -->Eval("ProductFeature").ToString()

于 2012-05-25T15:00:12.457 回答
1

检查 null 如下

<%#kill(Server.UrlDecode(Eval("ProductFeature")?? String.Empty))%>

或者您可以更改查询如下

 var query = from p in pdc.Products
             select p
             where p!= null;
于 2012-05-25T15:26:23.447 回答