Hi. I need an answer on why my code is not executed:<BR><BR><%@ Page Explicit="True" Language="VB" Debug="True" %><BR><%@ Import Namespace="system.data" %><BR><%@ Import Namespace="system.data.oledb" %><BR><BR><html><BR><BR><script runat=server><BR><BR>Sub Submit_Click(sender As Object, e As EventArgs)<BR><BR> *CODE*<BR><BR>End Sub<BR><BR><BR></script><BR><BR><body><BR><BR><table border=0 cellspacing=3 cellpadding=0><BR><BR> <tr><BR> <td>Username: </td><BR> <td><asp:textbox id="txtusername" runat="server" columns=10 /></td><BR> </tr><BR><BR> <tr><BR> <td>Password:</td><BR> <td><asp:textbox id="txtpassword" runat="server" columns=10 /></td><BR> </tr><BR><BR> <tr><BR> <td></td><BR> <td><asp:button id="Submit" runat="server" text="Submit" onclick="Submit_Click" /></td><BR> </tr><BR><BR></table><BR><BR></body><BR><BR></html><BR><BR>Altough all webforms are loaded, nothing happens when I click the Submit button. No page reload, nothing. <BR>I would use PHP, which is a lot faster and more professional, but I am more or less forces to use asp+.<BR>I'll be happy for any kind of advice.<BR>Thanks guys!You need to include your button within the <form runat=server></form> tags