0

Web フォームが機能しているのに、Html Editor Extender をページに追加すると、そのページのすべてのボタンが機能しなくなります。Html Editor エクステンダーを削除すると、ページは正常に動作します。

<asp:TextBox ID="TextBox1" runat="server" CssClass="form-control"
                    Height="300px" Width="600px">
                </asp:TextBox>
                <asp:HtmlEditorExtender ID="HtmlEditorExtender1" runat="server" EnableSanitization="False"
                    DisplaySourceTab="True" TargetControlID="TextBox1">
                </asp:HtmlEditorExtender>
4

1 に答える 1

1

同じ問題がありました。DisplaySourceTab="true" を取り出します。これで問題が解決するはずです。

于 2014-11-19T17:14:25.970 に答える