0

以下は、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 を入力すると、一致する単語が見つからないというメッセージが表示されます

4

1 に答える 1

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 クラス メンバーを参照してください。

于 2012-12-31T20:17:04.207 に答える