|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
My page is not triggering the RaisePostBackEvent() methodIn my *.aspx.vb file, I override the RaisePostBackEvent() method so that I
can run code during any postback. I know that a postback is occurring because IsPostBack() returns True, but none of the code in the following is executed: Protected Overrides Sub RaisePostBackEvent(ByVal sourceControl As System.Web.UI.IPostBackEventHandler, ByVal eventArgument As String) Dim outputwriter As System.IO.StreamWriter = System.IO.File.AppendText(Server.MapPath("debugging.txt")) outputwriter.WriteLine(String.Format("eventArgument={0}; Time={1}", eventArgument, Date.Now.ToLongTimeString())) outputwriter.Close() MyBase.RaisePostBackEvent(sourceControl, eventArgument) End Sub Am I doing something wrong here? Is there something else I must do in order to use the the RaisePostBackEvent() method? Any help would be appreciated. Thanks. the RaisePostBackEvent is only called if the control is the one that
caused the postback. its generally used to raise the server OnClick event. -- bruce (sqlwork.com) Nathan Sokalski wrote: Show quote > In my *.aspx.vb file, I override the RaisePostBackEvent() method so that > I can run code during any postback. I know that a postback is occurring > because IsPostBack() returns True, but none of the code in the following > is executed: > > Protected Overrides Sub RaisePostBackEvent(ByVal sourceControl As > System.Web.UI.IPostBackEventHandler, ByVal eventArgument As String) > Dim outputwriter As System.IO.StreamWriter = > System.IO.File.AppendText(Server.MapPath("debugging.txt")) > outputwriter.WriteLine(String.Format("eventArgument={0}; > Time={1}", eventArgument, Date.Now.ToLongTimeString())) > outputwriter.Close() > MyBase.RaisePostBackEvent(sourceControl, eventArgument) > End Sub > > Am I doing something wrong here? Is there something else I must do in > order to use the the RaisePostBackEvent() method? Any help would be > appreciated. Thanks. See
http://www.velocityreviews.com/forums/t75668-raisepostbackevent-question.html and http://dotnetjunkies.com/WebLog/willemo/archive/2005/02/23/56278.aspx From link above. " I enjoy writing web controls. However, the last couple of days I've been having a lot of trouble with RaisePostBackEvent. Sometimes, no matter how hard I try, I just can't get RaisePostBackEvent to fire unless I call Page.RegisterRequiresRaiseEvent(this) in LoadPostData. Other times my eventArgument parameter in RaisePostBackEvent is null. Even if it has been specified and looks perfect in HTML. I've then had to resort to funny code (that checks __EVENTTARGET and __EVENTARGUMENT) to get around it. When I have to hack to get something working I'm almost 100% sure that I'm doing something wrong somewhere. But with this I am really stumped. Maybe my computer needs a new install. Update: Problem solved! Page.RegisterRequiresRaiseEvent(this) in LoadPostData was a very wrong way to solve the problem. The reason RaisePostBackEvent was not being called was simple - the framework will only call RaisePostBackEvent on one control. In my case the wrong control's RaisePostBackEvent was being called. In another custom control I declared a hidden <input> tag with name set to the UniqueID. This is usually the way I go about creating a control that implements IPostBackDataHandler. The framework was getting confused and called RaisePostBackEvent in the wrong control (even though __EVENTTARGET pointed to the correct control). In this case, the other control did not implement IPostBackDataHandler and shouldn't have included the hidden <input>." Show quote "Nathan Sokalski" <njsokal***@hotmail.com> wrote in message news:eEnZ9lCDIHA.3332@TK2MSFTNGP04.phx.gbl... > In my *.aspx.vb file, I override the RaisePostBackEvent() method so that I > can run code during any postback. I know that a postback is occurring > because IsPostBack() returns True, but none of the code in the following > is executed: > > Protected Overrides Sub RaisePostBackEvent(ByVal sourceControl As > System.Web.UI.IPostBackEventHandler, ByVal eventArgument As String) > Dim outputwriter As System.IO.StreamWriter = > System.IO.File.AppendText(Server.MapPath("debugging.txt")) > outputwriter.WriteLine(String.Format("eventArgument={0}; Time={1}", > eventArgument, Date.Now.ToLongTimeString())) > outputwriter.Close() > MyBase.RaisePostBackEvent(sourceControl, eventArgument) > End Sub > > Am I doing something wrong here? Is there something else I must do in > order to use the the RaisePostBackEvent() method? Any help would be > appreciated. Thanks. |
|||||||||||||||||||||||