Hola tengo un formulario y quiero saber que codigo asp.net poner para poder enviar el formulario a una direccion de email. Gracias
 
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebApplication3._Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Página sin título</title>
</head>
<body>
 
 <form id="form1" runat="server">
    <div>
   <form action="Default.aspx" method="post" name="form1" class="margenFotos_tarima" id="form2" enctype="text/plain">
  <p>
    <label for="nombre">Nombre</label>
    <input type="text" name="nombre" id="nombre" />
    <br />
    <label for="apellidos">Apellidos</label>
    <input type="text" name="apellidos" id="apellidos" />
    <br />
    <label for="email" runat="server">E-mail</label>
    <input type="text" name="email" id="email" />
    <br />
    <label for="telefono">Teléfono</label>
    <input type="text" name="telefono" id="telefono" />
    <br />
    <label for="direccion">Dirección</label>
    <input type="text" name="direccion" id="direccion" />
    <br />
    <label for="poblacion">Población</label>
    <input type="text" name="poblacion" id="poblacion" />
    <br />
    <span id="label">
    <label for="comentario" class="textoComentario">Comentario</label>
    </span>
    <textarea name="comentario" cols="45" rows="5" id="comentario"></textarea>
    </p>
  <p>
    <label for="button"></label>
    <input name="button" type="submit" id="button"  value="Enviar" runat="server"   />
    <br />
  </p>
</form> 
    </div>
    </form>
</body>
</html> 
  
 

