拼写检查器不检查大写字母

时间:2012-11-19 19:34:12

标签: asp.net infragistics

以下是我的ASPX页面代码:

<td colspan="2">
    <asp:TextBox ID="txtMessageBody" runat="server" Rows="8" TextMode="MultiLine" Width="1180px"
        CssClass="Label" />
    <igspc:WebSpellChecker ID="wscSpellCheck" runat="server"  TextComponentId="txtMessageBody" ButtonId="btnCcheck">
        <DialogOptions ShowNoErrorsMessage="true"  />
    </igspc:WebSpellChecker>
    <div runat="server" id="divSpecllCheck">                                 
        <input type="button" id="btnCcheck"  value="Spell Check" />
    </div>                                       
</td>

我无法检查所有大写字母的拼写。其他方面如果我为CAT输入CTA,它说没有找到匹配的单词

1 个答案:

答案 0 :(得分:0)

将SpellOptions.PerformanceOptions.AllowCapitalizedWords设置为False。 WebSpellChecker的更新标记:

<ig_spell:WebSpellChecker ID="wscSpellCheck" runat="server" TextComponentId="txtMessageBody" ButtonId="btnCcheck">
    <SpellOptions>
        <PerformanceOptions AllowCapitalizedWords="False"/>
    </SpellOptions>
    <DialogOptions ShowNoErrorsMessage="true" />
</ig_spell:WebSpellChecker>

有关详细信息,请参阅NetAdvantage API文档中的PerformanceOptions Class Members