私はそれに適用したテキストボックスを持っていますjqwysiwyg:
public static void PopulateWysiwyg(this SafeTextBox tb)
{
string script =
@"
jQuery(document).ready(function()
{
jQuery('#safe_text_box').wysiwyg();
});
";
ScriptManager.RegisterStartupScript(
tb,
tb.GetType(),
tb.ClientID + "_wysiwyg",
script.Replace("safe_text_box", tb.ClientID), true
);
}
フォームのポストバックボタンをクリックすると、wysiwygjsが例外をスローします。
何か助けはありますか?