La compilazione di un form web

Con questo script, si puņ segnalare, tramite IsPostBack, se un modulo č stato compilato:

<%@ page language="vb"%> 
<script runat="server">
Sub page_load( obj As object, e As EventArgs )
If Not page.isPostBack then
elabora.text ="Compilare il modulo."
End if
End sub
Sub invio_form( obj As object, e As EventArgs )
'Qua bisogna inserire l'elaborazione del form elabora.text = 
"Form Inviato ed elaborato. Grazie " & myName.text
End sub 
</script> 
<html> 
<body> 
<form runat="server"> 
<table width="470" 
border="0" cellspacing="0" cellpadding="0"> 
<tr>  
<td>Nome</td> 
<td>  
<asp:TextBox 
id="myName" runat="server" /> 
</td> 
<td>  
<asp:Button id="invio" runat="server" 
text="Invia" onClick="invio_form" /> 
</td> 
</tr> 
<tr>  
<td colspan="3">  
<asp:Label id="elabora" value="" runat="server"/> 
</td> 
</tr> 
</table> 
</form> 
</body>
</html>