Uhm..ho provato ma non va

Ho fatto delle ricerche su web...e sembra un errore conosciuto...

csosys.dll è la libreria che dà noia..e a cui sembra non abbia l'accesso.

Ho provato a ri-registrarla(come suggerito da alcuni articoli) ma nulla.

Ho controllato la conf del servizio smtp, ma nulla.

Ho assegnato anche alla nuova paginetta che ti posto:
-----------------------------------------------------------

<%@ Page Language="VB" %>
<%@ import Namespace="System.Web.Mail" %>
<script runat="server">

Sub Button1_Click(sender As Object, e As EventArgs)

Try
Dim mail As New MailMessage
mail.From = txtFrom.Value
mail.To = txtTo.Value
mail.Subject = txtSubject.Value
mail.Body = txtBody.Value
SmtpMail.SmtpServer = "localhost"
SmtpMail.Send(mail)

' nascondo la form
form1.visible = false

lblAvviso.InnerHtml = "E-mail inviata con successo!"


Catch exc As Exception
lblAvviso.InnerHtml = "Errore nell'invio del messaggio:
" & exc.ToString
End Try

End Sub

</script>
<html>
<head>
</head>
<body>



<span id="lblAvviso" runat="server">



<span id="form1" runat="server">



Compila questo modulo per inviare un'e-mail.
</p>
<form runat="server">
A:
<input id="txtTo" type="text" runat="server" />


Da:
<input id="txtFrom" type="text" runat="server" />


Subject:
<input id="txtsubject" type="text" runat="server" />


Messaggio: <textarea id="txtBody" runat="server"></textarea>


<input id="Button1" type="button" value="Invia" runat="server" onserverclick="Button1_Click" />
</form>
</span>
</p>



</p>



</p>
</span>
</p>



</p>



</p>
</body>
</html>

-----------------------------------------------------------

Il try catch per vedere l'errore e mi restituisce questo:

Errore nell'invio del messaggio:
System.Web.HttpException: Impossibile accedere all'oggetto 'CDO.Message'. ---> System.Reflection.TargetInvocationException: Eccezione generata dalla destinazione di una chiamata. ---> System.Runtime.InteropServices.COMException (0x8004020F): The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for joker197cinque@yahoo.it --- Fine dell'analisi dello stack dell'eccezione interna --- at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters) at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters) at System.Web.Mail.LateBoundAccessHelper.CallMethod(O bject obj, String methodName, Object[] args) --- Fine dell'analisi dello stack dell'eccezione interna --- at System.Web.Mail.LateBoundAccessHelper.CallMethod(O bject obj, String methodName, Object[] args) at System.Web.Mail.CdoSysHelper.Send(MailMessage message) at System.Web.Mail.SmtpMail.Send(MailMessage message) at ASP.mail_aspx.Button1_Click(Object sender, EventArgs e)



Mi devo reinstallare il framework?

:master: