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

Last post 10-06-2008, 7:07 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  10-06-2008, 6:34 AM 44613

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

    Is there any code example or information regarding the use of the save button in the developer's guide?
     
     
  •  10-06-2008, 7:07 AM 44615 in reply to 44613

    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 as RSS news feed in XML