The command you provided...
editor1.ExecCommand("PostBack");
works, but when I try to capture the event in vb, the e.CommandName value of the System.Web.UI.WebControls.CommandEventArgs comes back as 'undefined'. I tried the following...
editor1.ExecCommand("PostBack","Save");
I was hoping that there would be an event arguments parameter, but it doesn't come through into the codebehind page. It still exhibits the 'undefined' postback type.
How can I submit forms with a parameter or fire one of the button's events? I really need to know how to use JavaScript to fire an editor's button's event.