嗨,我正在使用 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;
}