News:

MyKidsDiary.in :: Capture your kids magical moment and create your Online Private Diary for your kids

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - nomad

#1
Guys !

i am Working on Site in Which i need to create a individual profile for every customer and store information and i need to authenticate Users on every login and need a Password Reseting option too

i don't know how to implement this ? need some guidance ?

i am building it on ASP.NET C# .NET 2.0 and IIS

Thanks  ;)
#2
Test Case One :
Quote
<system.net>
    <mailSettings>
      <smtp>
        <network host="127.0.0.1" defaultCredentials="true" userName="*******" password="*******"/>
      </smtp>
    </mailSettings>
  </system.net>
Test Case Two :

Quoteprotected void Button2_Click(object sender, EventArgs e)
    {
        try
        {
            MailMessage mail = new MailMessage();
            mail.From = new MailAddress(TextBox1.Text);
            mail.To.Add(TextBox2.Text);
            mail.Subject = TextBox4.Text;
            mail.Body = TextBox5.Text;

            SmtpClient mailClient = new SmtpClient();
           //mailclient.host="127.0.0.1";
            mailClient.Send(mail);
           
        }
        catch (Exception er)
        {
            Label4.Text = er.Message;
        }
    }

Mail Sending Programm Works But SMTP Fails to send mail .. it Works randomly.. ( i got mail few times from the code )
But it works Randomly. Some times Mail goes straight a way in to Queue Folder in no time . Why is that Happens ?

can some explain me how SMTP send mails to Other Servers ?