Click here to Skip to main content
15,797,960 members
Home / Discussions / Web Development
   

Web Development

 
QuestionBreak point in the Page Load event is not firing Pin
shyamts16-Mar-07 6:29
shyamts16-Mar-07 6:29 
AnswerRe: Break point in the Page Load event is not firing Pin
Marcus J. Smith16-Mar-07 8:36
professionalMarcus J. Smith16-Mar-07 8:36 
GeneralRe: Break point in the Page Load event is not firing Pin
shyamts17-Mar-07 20:47
shyamts17-Mar-07 20:47 
Questionsending email Pin
saltcode16-Mar-07 5:52
professionalsaltcode16-Mar-07 5:52 
AnswerRe: sending email Pin
Marcus J. Smith16-Mar-07 5:55
professionalMarcus J. Smith16-Mar-07 5:55 
AnswerRe: sending email Pin
enjoycrack16-Mar-07 5:58
enjoycrack16-Mar-07 5:58 
GeneralRe: sending email Pin
saltcode16-Mar-07 7:12
professionalsaltcode16-Mar-07 7:12 
GeneralRe: sending email Pin
Marcus J. Smith16-Mar-07 8:31
professionalMarcus J. Smith16-Mar-07 8:31 
//create the mail message
MailMessage mail = new MailMessage();

//set the addresses
mail.From = new MailAddress("me@mycompany.com");
mail.To.Add("you@yourcompany.com");

//set the content
mail.Subject = "This is an email";
mail.Body = "this is a sample body with html in it. This is bold <font color=#336699>This is blue</font>";
mail.IsBodyHtml = true;

//send the message
SmtpClient smtp = new SmtpClient("127.0.0.1");
smtp.Send(mail);
That is from the link I provided. Does that shed any light on the subject?


CleaKO

"I think you'll be okay here, they have a thin candy shell. 'Surprised you didn't know that.'" - Tommy (Tommy Boy)
"Fill it up again! Fill it up again! Once it hits your lips, it's so good!" - Frank the Tank (Old School)

AnswerRe: sending email Pin
Vasudevan Deepak Kumar22-Mar-07 7:20
Vasudevan Deepak Kumar22-Mar-07 7:20 
Questionvalidate textbox length Pin
jayvaishnav8216-Mar-07 3:49
jayvaishnav8216-Mar-07 3:49 
AnswerRe: validate textbox length Pin
hiral_shah16-Mar-07 4:09
hiral_shah16-Mar-07 4:09 
AnswerRe: validate textbox length Pin
Marcus J. Smith16-Mar-07 5:10
professionalMarcus J. Smith16-Mar-07 5:10 
GeneralRe: validate textbox length Pin
jayvaishnav8217-Mar-07 4:55
jayvaishnav8217-Mar-07 4:55 
AnswerRe: validate textbox length Pin
DavidNohejl16-Mar-07 15:30
DavidNohejl16-Mar-07 15:30 
QuestionConvertion Help! Pin
Illegal Operation16-Mar-07 3:06
Illegal Operation16-Mar-07 3:06 
AnswerRe: Convertion Help! Pin
RichardGrimmer16-Mar-07 3:13
RichardGrimmer16-Mar-07 3:13 
GeneralRe: Convertion Help! Pin
Illegal Operation16-Mar-07 3:42
Illegal Operation16-Mar-07 3:42 
GeneralRe: Convertion Help! Pin
Marcus J. Smith16-Mar-07 8:33
professionalMarcus J. Smith16-Mar-07 8:33 
Questionhow to change the pagelayout of the page in asp.net 2005 Pin
Rmesh16-Mar-07 2:47
Rmesh16-Mar-07 2:47 
AnswerRe: how to change the pagelayout of the page in asp.net 2005 Pin
RichardGrimmer16-Mar-07 3:14
RichardGrimmer16-Mar-07 3:14 
QuestionHow to use shortcut keys in ASP.NET Pin
Murtuza Husain Miyan Patel16-Mar-07 2:21
professionalMurtuza Husain Miyan Patel16-Mar-07 2:21 
AnswerRe: How to use shortcut keys in ASP.NET Pin
Vasudevan Deepak Kumar22-Mar-07 7:21
Vasudevan Deepak Kumar22-Mar-07 7:21 
Questionshortcut keys in asp.net 1.1 with c# Pin
vipintin16-Mar-07 1:14
vipintin16-Mar-07 1:14 
AnswerRe: shortcut keys in asp.net 1.1 with c# Pin
badgrs16-Mar-07 1:54
badgrs16-Mar-07 1:54 
AnswerRe: shortcut keys in asp.net 1.1 with c# Pin
Vasudevan Deepak Kumar22-Mar-07 7:22
Vasudevan Deepak Kumar22-Mar-07 7:22 

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.