Click here to Skip to main content
16,013,747 members

Comments by subhusingh (Top 5 by date)

subhusingh 2-Aug-13 2:58am View    
Deleted
asdafasf
subhusingh 14-Dec-12 2:11am View    
Worker Process Recycling Frequntly Which leads to Session lose All the User Got Out Of the Site I checked All the pool setings And wp setting They All are fine Some Other Site Are On Same server but working Fine.......finaaly i got this error fropm iis log..
subhusingh 11-Dec-12 5:59am View    
In Web Config........
subhusingh 11-Dec-12 5:59am View    
Sorry Dude........... Please Help If u can....
subhusingh 23-Aug-12 2:35am View    
MailMessage message = new MailMessage();

message.To.Add(new MailAddress("ToAddress"));
message.From = new MailAddress("Myid");






message.Subject = "hii";
message.Body = "hii";

// message.Attachments.Add(attachment);


SmtpClient client = new SmtpClient();
client.Port = 25;
client.Host = "mail.nic.in";
System.Net.NetworkCredential nc = new System.Net.NetworkCredential("mailid","password")
client.EnableSsl = true;
client.UseDefaultCredentials = false;

client.Credentials = nc;
client.Send(message);