目前我正在使用 MS Word 2007 Addin。我在使用一个自定义控件时遇到了问题。
ContentControl 的多行属性为 true。它正在接受来自数据库的值。如果任何数据库值具有特殊字符,例如 <,>内容控件将停止显示数据。
假设数据库中的数据为男性、女性、儿童(<5)、儿童(>10)
,内容控件最多只接受男性、女性、儿童(
、数字数据等其他数据,
请帮助我解决此问题。
Currently I am working on MS Word 2007 Addin.I am getting Problem with one custom control.
The ContentControl is having multiline property to true.it is accepting values from the database. if any database value is having special characters like <,> the content control will stop showing the data.
Suppose the data in the database is Male, Female, Children(<5), Children(>10)
, The content control is accepting only upto Male, Female, Children(
.
For other data like strings, numeric data it is working fine.
Please Help me in solving this issue.
发布评论
评论(1)
我对 Office 插件一点也不熟悉,但也许它使用了一些 XML 或 XAML(基于 XML)策略。
在这种情况下 XML转义字符或编码可能会有所帮助。
尝试使用
>
表示>
,使用<
表示<
。I am not at all familiar with the Office addins but maybe it uses some XML or XAML (which is XML-based) strategy.
In this case XML escape characters or encodings might help.
Try
>
for>
and<
for<
.