Hey,
I got a legacy app that the man is making me change to a new layout. All the controls and code is staying the same. I've been given the HTML layout and pasted it into new .aspx pages. Now when I copy and paste the controls into the new page the events don't fire. What am I missing?
one example:
Code:Private Sub cmdApply_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdApply.Click sendMailFromForm() End SubCode:<asp:Button id="cmdApply" runat="server" Width="150px" Text="Apply for this Job"></asp:Button>
Thanks!




Reply With Quote