David
4/19/2012 5:31:19 AM
I am looking to write some code that takes place after the "publish" button is clicked on the BlogPostEdit control.
<MonoX:StyledButton id="btnSave" runat="server" CausesValidation="true"
OnClick="btnSave_Click" />
To do this I was looking to override like the following but this does not work.
01.namespace ProjectName.Web.CustomClasses
02.{
03. public partial class BlogPostEditOverride : MonoSoftware.MonoX.ModuleGallery.Blog.BlogPostEdit
04. {
05. public override void btnSave_Click()
06. {
07. base.btnSave_Click();
08. }
09. }
10.}
What would you suggest in order for me to do as I suggested?
This content has not been rated yet.
174
Reputation
22
Total posts