您好我正在使用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;
}
答案 0 :(得分:0)
strValue可以为空吗?尝试添加空测试。如果它为null,则替换为空字符串。