Bonjour à tous,
j'ai créé un formulaire sur une page aspx avec differents TextBox et un bouton Envoyer.
je voudrai que le contenu des TextBox soient envoyés une adresse mail .
J'ai vu quelques explications à ce sujet mais je n'ai pas tout compris,je voudrai utiliser cette méthode mais aussi en comprendre le fonctionnnement.
je m'en remets donc à vous pour eclairer ma lanterne et m'aider à avancer dans mon apprentissage

merci bien
voici le code du formulaire:
<table style="font-family: Arial; color: #38485f; height: 492px;">
<tr>
<td colspan="2" style="height: 60px">
Remplissez le formulaire ci-dessous
</td>
</tr>
<tr>
<td style="width: 284px; height: 40px;" align="right">
Nom
</td>
<td style="width: 627px; height: 40px;">
<asp:TextBox ID="TxtBoxNom" runat="server" Width="200px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 284px; height: 40px;" align="right">
Adresse</td>
<td style="width: 627px; height: 40px;">
<asp:TextBox ID="TxtBoxAdresse" runat="server" Width="200px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 284px; height: 40px;" align="right">
Ville</td>
<td style="width: 627px; height: 40px;">
<asp:TextBox ID="TxtBoxVille" runat="server" Width="200px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 284px; height: 40px;" align="right">
Adresse mail</td>
<td style="width: 627px; height: 40px;">
<asp:TextBox ID="TxtBoxMails" runat="server" Width="200px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 284px; height: 40px;" align="right">
Numéro de téléphone</td>
<td style="width: 627px; height: 40px;">
<asp:TextBox ID="TxtBoxTelephone" runat="server" Width="200px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 284px; height: 181px;" align="right">
Commentaire</td>
<td style="width: 627px; height: 181px;">
<asp:TextBox ID="TxtBoxCommentaire" runat="server" Height="170px" Width="400px"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2" align="center" style="height: 30px">
<asp:Button ID="BtnEnvoyer" runat="server" Text="Envoyer" />
</td>
</tr>
</table>