''E-mail Address Not Verified'' s'affiche à côté du pseudo VoirIntroduction
Lorsque vous utilisez MSN Messenger ou Windows Live Messenger avec une adresse non fournie par le réseau MSN (c'est-à-dire ne se terminant pas par @hotmail @msn ou @live), vous devez, soit enregistrer l'adresse e-mail sur le réseau...
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="WebApplication6.WebForm1"%>
<%@ import namespace="System"%>
<%@ import namespace="System.Web" %>
<%@ import namespace="System.Web.Mail"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script runat="server">
sub cmdsend_click(sender as Object,e as EventArgs)
dim objMail as MailMessage
objMail=New MailMessage()
with objMail
.from="ali_bouta@hotmail.com"
.to="batma97@hotmail.fr"
.subject="test"
.body="test de lmail"
.BodyFormat=MailFormat.Html
end with
smtpMail.smtpServer="192.168.1.4"
smtpMail.Send(objMail)
end sub
</script>
</head>
<body MS_POSITIONING="GridLayout">