Question : Why am I getting this compile error?


my aspx page

          EnableViewState="False" Text="Email event notices to registered attendees"
        ValidationGroup="EventRegAttendee" Width="269px" OnClick="EmailRegAttendeeNotices()"/>
--------------------------------------------------------------------------------------
my aspx inline code
----------------------------
   
====================================================

Compile error?
=======================================================
Error      20      Argument not specified for parameter 'e' of 'Protected Sub EmailRegAttendeeNotices(sender As Object, e As System.EventArgs)'.      C:\Documents and Settings\Dennis West\Local Settings\Temp\VWDWebCache\cmaanorcalevents.com\DesktopModules\i2Integration - Events\user\Register.ascx      100      
Error      22      Argument not specified for parameter 'e' of 'Protected Sub EmailRegAttendeeNotices(sender As Object, e As System.EventArgs)'.      C:\Documents and Settings\Dennis West\Local Settings\Temp\VWDWebCache\cmaanorcalevents.com\DesktopModules\i2Integration - Events\user\Register.ascx      100      
Error      21      Argument not specified for parameter 'sender' of 'Protected Sub EmailRegAttendeeNotices(sender As Object, e As System.EventArgs)'.      C:\Documents and Settings\Dennis West\Local Settings\Temp\VWDWebCache\cmaanorcalevents.com\DesktopModules\i2Integration - Events\user\Register.ascx      100      
Error      23      Argument not specified for parameter 'sender' of 'Protected Sub EmailRegAttendeeNotices(sender As Object, e As System.EventArgs)'.      C:\Documents and Settings\Dennis West\Local Settings\Temp\VWDWebCache\cmaanorcalevents.com\DesktopModules\i2Integration - Events\user\Register.ascx      100      
=========================================================

Answer : Why am I getting this compile error?

you should add  Handles btn.click I guess

Protected Sub EmailRegAttendeeNotices_Click(ByVal sender As Object, ByVal e As EventArgs)
-->
Protected Sub EmailRegAttendeeNotices_Click(ByVal sender As Object, ByVal e As EventArgs) handles Button1.click
Random Solutions  
 
programming4us programming4us