Click here to Skip to main content
15,908,173 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionWeb Forms - Creating a DLL from cmd Pin
rakanishuu25-Mar-08 16:11
rakanishuu25-Mar-08 16:11 
GeneralRe: Web Forms - Creating a DLL from cmd Pin
Christian Graus25-Mar-08 16:18
protectorChristian Graus25-Mar-08 16:18 
Generaldisabled submit button Pin
Xarzu25-Mar-08 15:07
Xarzu25-Mar-08 15:07 
GeneralRe: disabled submit button Pin
Christian Graus25-Mar-08 15:55
protectorChristian Graus25-Mar-08 15:55 
QuestionRe: disabled submit button Pin
Jesse Squire25-Mar-08 15:56
Jesse Squire25-Mar-08 15:56 
QuestionUsing SMTP to send mail Pin
Mike Hankey25-Mar-08 11:23
mveMike Hankey25-Mar-08 11:23 
GeneralRe: Using SMTP to send mail Pin
led mike25-Mar-08 11:36
led mike25-Mar-08 11:36 
GeneralRe: Using SMTP to send mail Pin
Mike Hankey25-Mar-08 11:46
mveMike Hankey25-Mar-08 11:46 
led mike wrote:
Are you behind a firewall?


Just XP firewall but that the port they told me to use. Oddly if I use the obsolete CDO to do email it works using these settings.

MailMessage mailMsg = new MailMessage();
mailMsg.From = from;
mailMsg.To = "mhankey@hq4thmarinescomm.com";
mailMsg.Subject = "Auto generated answer from Mike Hankey";
mailMsg.Body = body;

// Smtp configuration
SmtpMail.SmtpServer = "smtp.bizmail.yahoo.com";

mailMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
mailMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "username");
mailMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "password");

mailMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", "465");

mailMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl", "true");

SmtpMail.Send(mailMsg);

led mike wrote:
you have an email account on yahoo called "username" with a password of "password"?


Didn't want to advertise such info here!

Thanks
Mike


GeneralRe: Using SMTP to send mail Pin
Vasudevan Deepak Kumar25-Mar-08 19:17
Vasudevan Deepak Kumar25-Mar-08 19:17 
GeneralRe: Using SMTP to send mail Pin
Mike Hankey26-Mar-08 1:53
mveMike Hankey26-Mar-08 1:53 
GeneralQuirky Links and Form Pin
ffowler25-Mar-08 7:53
ffowler25-Mar-08 7:53 
GeneralRe: Quirky Links and Form Pin
pmarfleet25-Mar-08 9:39
pmarfleet25-Mar-08 9:39 
GeneralAuthenticating Web App Using AD Pin
dboy22125-Mar-08 7:40
dboy22125-Mar-08 7:40 
GeneralRe: Authenticating Web App Using AD Pin
Abhijit Jana25-Mar-08 19:05
professionalAbhijit Jana25-Mar-08 19:05 
Questionexporting gridview data into excel, i got this error. Help~ Pin
Dong Kim25-Mar-08 6:16
Dong Kim25-Mar-08 6:16 
GeneralRe: exporting gridview data into excel, i got this error. Help~ Pin
Elizma25-Mar-08 18:12
Elizma25-Mar-08 18:12 
QuestionRe: exporting gridview data into excel, i got this error. Help~ Pin
Dong Kim26-Mar-08 3:57
Dong Kim26-Mar-08 3:57 
QuestionHow to read xml data and make it as HTML table data? Pin
chakran25-Mar-08 4:14
chakran25-Mar-08 4:14 
AnswerRe: How to read xml data and make it as HTML table data? Pin
Mark J. Miller25-Mar-08 7:36
Mark J. Miller25-Mar-08 7:36 
QuestionResponse.WriteFile and Modal window Issue Pin
Saud AKhter25-Mar-08 3:56
Saud AKhter25-Mar-08 3:56 
GeneralCalling webservices asynchronously using java script Pin
Sql Exciter25-Mar-08 3:38
Sql Exciter25-Mar-08 3:38 
GeneralRe: Calling webservices asynchronously using java script Pin
Jesse Squire25-Mar-08 3:59
Jesse Squire25-Mar-08 3:59 
GeneralRe: Calling webservices asynchronously using java script Pin
Declan Bright25-Mar-08 4:01
Declan Bright25-Mar-08 4:01 
GeneralRe: Calling webservices asynchronously using java script Pin
gauthee25-Mar-08 4:01
gauthee25-Mar-08 4:01 
GeneralASP:menu control question Pin
ChrisFarrugia25-Mar-08 3:24
ChrisFarrugia25-Mar-08 3:24 

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.