任何人都可以建议如何将以HTML格式存储在SQL中的值显示到word文件中。我正在使用开放式xml工具从我的asp.net MVC应用程序生成我的单词并且它工作正常但现在我陷入了一个点,其中有一个子弹点条目存储在我的数据库字段中,我必须在我的表中显示它单元格文本属性?
存储在数据库字段中的实际值:"<ul><li>tapan</li><li>gupta</li></ul><p> </p>"
Run run362 = new Run();
RunProperties runProperties358 = new RunProperties();
RunFonts runFonts851 = new RunFonts() { Hint = FontTypeHintValues.EastAsia, Ascii = "Helvetica", HighAnsi = "Helvetica", ComplexScript = "Arial" };
FontSize fontSize833 = new FontSize() { Val = "20" };
Languages languages772 = new Languages() { EastAsia = "zh-HK" };
runProperties358.Append(runFonts851);
runProperties358.Append(fontSize833);
runProperties358.Append(languages772);
Text text299 = new Text() { Space = SpaceProcessingModeValues.Preserve };
text299.Text = **my field value**
run362.Append(runProperties358);
run362.Append(text299);