Click here to Skip to main content
15,885,980 members
Home / Discussions / C#
   

C#

 
AnswerRe: How was life before C#? Pin
Luc Pattyn15-Nov-07 1:57
sitebuilderLuc Pattyn15-Nov-07 1:57 
GeneralRe: How was life before C#? Pin
kingletas15-Nov-07 9:09
kingletas15-Nov-07 9:09 
Questionhow can i send emails automatically in asp.net using C# code Pin
Rajeshwar Code- Developer14-Nov-07 20:06
Rajeshwar Code- Developer14-Nov-07 20:06 
AnswerRe: how can i send emails automatically in asp.net using C# code Pin
Albu Marius14-Nov-07 20:25
Albu Marius14-Nov-07 20:25 
GeneralRe: how can i send emails automatically in asp.net using C# code Pin
Rajeshwar Code- Developer14-Nov-07 20:30
Rajeshwar Code- Developer14-Nov-07 20:30 
GeneralRe: how can i send emails automatically in asp.net using C# code Pin
Albu Marius14-Nov-07 20:46
Albu Marius14-Nov-07 20:46 
GeneralRe: how can i send emails automatically in asp.net using C# code Pin
Rajeshwar Code- Developer15-Nov-07 20:02
Rajeshwar Code- Developer15-Nov-07 20:02 
AnswerRe: how can i send emails automatically in asp.net using C# code Pin
Satish - Developer15-Nov-07 0:37
Satish - Developer15-Nov-07 0:37 
use system.net.mail namespace

MailAddress SendFrom = new MailAddress(txtFromAddr.Text);
SmtpClient objSmtpClient = new SmtpClient();
objSmtpClient.Host = "mail.techgene.net";
objSmtpClient.Credentials = new System.Net.NetworkCredential("uname", "pwd");
MailAddress SendTo = new MailAddress(_mailId);
MailMessage objMailMessage = new MailMessage(SendFrom, SendTo);
objMailMessage.Subject = Convert.ToString(txtSubject.Text);
objMailMessage.Body = Convert.ToString(webBrowser1.DocumentText);
objMailMessage.IsBodyHtml = true;
objSmtpClient.Send(objMailMessage);

G. Satish
QuestionHow to select the File (help me) Pin
madhugurukul14-Nov-07 19:38
madhugurukul14-Nov-07 19:38 
AnswerRe: How to select the File (help me) Pin
Christian Graus14-Nov-07 19:50
protectorChristian Graus14-Nov-07 19:50 
QuestionRe: How to select the File (help me) [modified] Pin
madhugurukul14-Nov-07 20:00
madhugurukul14-Nov-07 20:00 
GeneralRe: How to select the File (help me) Pin
Cape Town Developer14-Nov-07 21:47
Cape Town Developer14-Nov-07 21:47 
GeneralRe: How to select the File (help me) Pin
Christian Graus14-Nov-07 22:14
protectorChristian Graus14-Nov-07 22:14 
Questionhow to created object referenced by a string Pin
swheat14-Nov-07 19:34
swheat14-Nov-07 19:34 
AnswerRe: how to created object referenced by a string Pin
knodark14-Nov-07 19:41
knodark14-Nov-07 19:41 
AnswerRe: how to created object referenced by a string Pin
Christian Graus14-Nov-07 19:52
protectorChristian Graus14-Nov-07 19:52 
GeneralRe: how to created object referenced by a string Pin
swheat15-Nov-07 5:08
swheat15-Nov-07 5:08 
GeneralRe: how to created object referenced by a string Pin
echuck6618-Nov-07 16:18
echuck6618-Nov-07 16:18 
QuestionHow Can i Access This Code? Pin
knodark14-Nov-07 19:34
knodark14-Nov-07 19:34 
AnswerRe: How Can i Access This Code? Pin
Christian Graus14-Nov-07 19:42
protectorChristian Graus14-Nov-07 19:42 
QuestionHow to create multilingual word documents programetically using c#.net? Pin
Reddy Prakash14-Nov-07 19:32
Reddy Prakash14-Nov-07 19:32 
QuestionHelp regarding FileSystemWatcher Pin
anu8114-Nov-07 19:27
anu8114-Nov-07 19:27 
AnswerRe: Help regarding FileSystemWatcher Pin
Reddy Prakash14-Nov-07 22:28
Reddy Prakash14-Nov-07 22:28 
Questiongetting the date as a folder name Pin
Sunil Wise14-Nov-07 19:19
professionalSunil Wise14-Nov-07 19:19 
AnswerRe: getting the date as a folder name Pin
Andrei Ungureanu14-Nov-07 19:56
Andrei Ungureanu14-Nov-07 19:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.