Click here to Skip to main content
15,891,473 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: problem in crystal report Pin
Shuaib wasif khan9-Apr-07 19:09
Shuaib wasif khan9-Apr-07 19:09 
QuestionI would like to do popup menu for my ASP.net pages(how to?) Pin
cpltek9-Apr-07 3:14
cpltek9-Apr-07 3:14 
AnswerRe: I would like to do popup menu for my ASP.net pages(how to?) Pin
Sathesh Sakthivel9-Apr-07 3:32
Sathesh Sakthivel9-Apr-07 3:32 
QuestionCreating a setup for a XML Web Service Pin
steve_rm9-Apr-07 2:56
steve_rm9-Apr-07 2:56 
QuestionPage Change Events Pin
TimGee9-Apr-07 2:31
TimGee9-Apr-07 2:31 
AnswerRe: asp:listitem client side validation? Pin
enjoycrack9-Apr-07 1:16
enjoycrack9-Apr-07 1:16 
QuestionMass Mailing Pin
pusp19-Apr-07 0:40
pusp19-Apr-07 0:40 
AnswerRe: Mass Mailing Pin
Sathesh Sakthivel9-Apr-07 0:59
Sathesh Sakthivel9-Apr-07 0:59 
Yes.

MailMessage message = new MailMessage();

message.From = new MailAddress("sender@abc.com");



message.To.Add(new MailAddress("recipient1@abc.com"));

message.To.Add(new MailAddress("recipient2@abc.com"));

message.To.Add(new MailAddress("recipient3@abc.com"));



message.CC.Add(new MailAddress("carboncopy@abc.com"));

message.Subject = "This is my subject";

message.Body = "This is the content";



SmtpClient client = new SmtpClient();

client.Send(message);


Hope it will help yoou.





Regards,

Satips.

QuestionUsing PHP WebServices in .NET Pin
King Shez8-Apr-07 23:55
King Shez8-Apr-07 23:55 
AnswerRe: Using PHP WebServices in .NET Pin
Vasudevan Deepak Kumar9-Apr-07 6:12
Vasudevan Deepak Kumar9-Apr-07 6:12 
GeneralRe: Using PHP WebServices in .NET Pin
King Shez9-Apr-07 20:01
King Shez9-Apr-07 20:01 
GeneralRe: Using PHP WebServices in .NET Pin
Vasudevan Deepak Kumar9-Apr-07 21:12
Vasudevan Deepak Kumar9-Apr-07 21:12 
Questionplease give suggestions Pin
Vinay Dornala8-Apr-07 23:10
Vinay Dornala8-Apr-07 23:10 
QuestionRe: please give suggestions Pin
Abolfazl Sheikhloo8-Apr-07 23:47
Abolfazl Sheikhloo8-Apr-07 23:47 
AnswerRe: please give suggestions Pin
Shajeel9-Apr-07 0:00
Shajeel9-Apr-07 0:00 
AnswerRe: please give suggestions Pin
Sathesh Sakthivel9-Apr-07 0:34
Sathesh Sakthivel9-Apr-07 0:34 
AnswerRe: please give suggestions Pin
Vasudevan Deepak Kumar9-Apr-07 6:13
Vasudevan Deepak Kumar9-Apr-07 6:13 
QuestionUnable to update database Pin
J Liang8-Apr-07 22:23
J Liang8-Apr-07 22:23 
AnswerRe: Unable to update database Pin
_mubashir8-Apr-07 22:44
_mubashir8-Apr-07 22:44 
GeneralRe: Unable to update database Pin
J Liang8-Apr-07 23:09
J Liang8-Apr-07 23:09 
GeneralRe: Unable to update database Pin
_mubashir8-Apr-07 23:35
_mubashir8-Apr-07 23:35 
GeneralRe: Unable to update database Pin
J Liang8-Apr-07 23:49
J Liang8-Apr-07 23:49 
GeneralRe: Unable to update database Pin
_mubashir9-Apr-07 0:16
_mubashir9-Apr-07 0:16 
GeneralRe: Unable to update database Pin
J Liang9-Apr-07 0:26
J Liang9-Apr-07 0:26 
GeneralRe: Unable to update database Pin
_mubashir9-Apr-07 0:34
_mubashir9-Apr-07 0:34 

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.