Re: Save Button -- Where can I read about it in the developer's guide?

  •  10-06-2008, 7:07 AM

    Re: Save Button -- Where can I read about it in the developer's guide?

    Hi jreeney,
     
    you can try this way:
    <CE:Editor id="Editor1" runat="server" OnPostBackCommand="Editor1_PostBackCommand" ></CE:Editor>
    <script runat="server">
       protected void Editor1_PostBackCommand(object sender, CommandEventArgs e)
        {
            Editor1.Text = "Get postback command : " + e.CommandName;
            if (e.CommandName == "Save")
            {
                Editor1.Text = "test";
            }
        }
    </script>
     
    Regards
     
    Ken
View Complete Thread