0

嗨,我正在使用 RichEditor。此编辑器将跨度和样式保存在表中。所以,我使用以下方法来避免这种情况:HtmlDecode(DataBinder.Eval(Container.DataItem, "ImageDesc"))

但它给出的错误如下:

HtmlCode 有一些无效参数

我该如何解决这个问题。c#代码是:

public string HtmlDecode(string strValue)
    {
        string functionReturnValue = null;
        try
        {
            functionReturnValue = Server.HtmlDecode(strValue);

        }
        catch (Exception exc)
        {
           // ProcessModuleLoadException(this, exc);
        }
        return functionReturnValue;
    }
4

1 回答 1

0

strValue 可以为 Null 吗?尝试添加一个空测试。如果为空,则替换为空字符串。

于 2012-06-27T07:54:30.833 回答