TruthInSatire
Programmer
A little new to asp.net.
I'm using VB.net
I have a form with a button that doesn't seem to trigger the handler. any help would be great.
The handler is supposed to insert the record. Got no errors, no insert either. Put some bogus code in the function to at least get an error but never got the error so i assume the handler isn't being triggered.
We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.
I'm using VB.net
I have a form with a button that doesn't seem to trigger the handler. any help would be great.
Code:
Sub Button1_Click(sender As Object, e As EventArgs)
...
...
End Sub
...
...
<asp:button id="Button1" runat="server" Font-Bold="True" ForeColor="White" BackColor="#000040" Text="Add Employee" width="280px"></asp:button>
The handler is supposed to insert the record. Got no errors, no insert either. Put some bogus code in the function to at least get an error but never got the error so i assume the handler isn't being triggered.
We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.