----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: rags_rao Message 2 in Discussion hmm....... autowireupevent hooks up events based on the name of handler. let me explain with example this.Load += new System.EventHandler(this.Page_Load); this line of code is auto generated by ide when a page is created. it manually hooks a handler for Load event. this is when autowireupevent=fasle note that the function name can be anything here like this.Load += new System.EventHandler(MyFunction); when autowireupevent=true, the event is hooked dynamically based on function name (vb6 style. infact this is provided to make vb6 guys fell @ home) so u can remove the line that adds event handler and function with name "Page_Load" will be hooked to Load event. This is an ad hoc approach and had performance overhead ans isnt recommended. -- "I'm sick of dour faces Staring at me from the T.V. Tower. I want roses in my garden bower; dig?" - Jim morrison ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
