Re: What am i doing wrong in calling this script? Urgent please. Thank You.

From: Miguel Dias Moura (web001_at_27NOSPAMlamps.com)
Date: 06/22/04


Date: Tue, 22 Jun 2004 23:57:37 +0100

I added what you told me and now i got this error:
BC30506: Handles clause requires a WithEvents variable.

What should i do?

Thanks,
Miguel

"Ryan Ternier" <rternier@icompasstech.com.spamproof> wrote in message
news:O0E99gKWEHA.3596@tk2msftngp13.phx.gbl...
> Have you tried adding : handles Finish.Click to the end of your function
> definition?
>
>
>
> <asp:Button ID="Finish" runat="server" OnClick="btnFinish_Click"
>
> btnFinish_Click is as follows:
>
> Sub btnFinish_Click( s As Object, e As EventArgs ) handles Finish.click
> InsertFormValues.DoInit()
> sendEmail()
> End Sub
>
>
>
> "Miguel Dias Moura" <web001@27NOSPAMlamps.com> wrote in message
> news:uyF9STKWEHA.1164@tk2msftngp13.phx.gbl...
> Hi,
>
> I just uploaded a web site and i am getting an error.
>
> I have a script which sends form values to an email using AspNetEmail.
> The script was working when i was calling the script like this:
> <asp:Button ID="Finish" runat="server" OnClick="sendEmail">
>
> However, in this new web site version, when the button is pressed, to
> scripts are supose to run.
> So i replaced the button code with this:
> <asp:Button ID="Finish" runat="server" OnClick="btnFinish_Click"
>
> btnFinish_Click is as follows:
> Sub btnFinish_Click( s As Object, e As EventArgs )
> InsertFormValues.DoInit()
> sendEmail()
> End Sub
>
> I get the following error:
>
> "BC30455: Argument not specified for parameter 'e' of 'Private Sub
> sendEmail(sender As Object, e As System.EventArgs)'."
>
> in this line:
>
> Line 136: sendEmail()
>
> So i am calling the script in the wrong way.
> I also tryied to call it just with "sendEmail".
>
> The script starts with:
> Private Sub sendEmail(sender as Object, e as System.EventArgs)
> ...
>
> I really need to have this done tonight. Can you help me?
>
> Thank You,
> Miguel
>
> P.S: Working with ASP.NET / VB
>
>
>
>
>
>
>