I have a bunch of inherited EditorServerCommandActions in my WebADF solution and when ever I use the ReturnMessage inside EditorServerAction() it generates two javascript popups at the clientside.
Is this a common know error or am I simply missing something?
public class CustomCommandAction : EditorServerCommandAction
{
protected override void EditorServerAction()
{
ReturnMessage("Foo");
}
}