Click here to Skip to main content
15,899,549 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionNEED HELP!!!!! Pin
Conquistador149226-Oct-08 22:37
Conquistador149226-Oct-08 22:37 
AnswerRe: NEED HELP!!!!! Pin
NeverHeardOfMe26-Oct-08 22:54
NeverHeardOfMe26-Oct-08 22:54 
GeneralRe: NEED HELP!!!!! Pin
Paul Conrad27-Oct-08 6:17
professionalPaul Conrad27-Oct-08 6:17 
Questionhow to upload given url file. Pin
Rajeesrivastava26-Oct-08 22:15
Rajeesrivastava26-Oct-08 22:15 
AnswerRe: how to upload given url file. Pin
Guffa26-Oct-08 23:32
Guffa26-Oct-08 23:32 
Questionhow to Set value of html select from vb code behind? Pin
mr_muskurahat26-Oct-08 21:54
mr_muskurahat26-Oct-08 21:54 
QuestionMail is not deliverd to Destination Pin
Rajeesrivastava26-Oct-08 21:26
Rajeesrivastava26-Oct-08 21:26 
AnswerRe: Mail is not deliverd to Destination Pin
Jagadeesh Jupalli26-Oct-08 21:40
Jagadeesh Jupalli26-Oct-08 21:40 
Hi,

comment out this line
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials =false;
smtp.Credentials = SmtpUser;

and test it. Other wise use this code
MailAddress SendFrom = new MailAddress(txtFrom.Text);
MailAddress SendTo = new MailAddress(txtTo.Text);
MailMessage MyMessage = new MailMessage(SendFrom, SendTo);

MyMessage.Subject = "Subject here";
MyMessage.IsBodyHtml = true;
MyMessage.Priority = MailPriority.Normal;
MyMessage.Body = "Some Html Body here";
SmtpClient emailClient = new SmtpClient();
//emailClient.UseDefaultCredentials = true;
//emailClient.DeliveryMethod = SmtpDeliveryMethod.PickupDirectoryFromIis;
emailClient.Host = "localhost";
emailClient.Send(MyMessage);
It will work.
~JJ


AnswerRe: Mail is not deliverd to Destination Pin
bokuceres26-Oct-08 22:32
bokuceres26-Oct-08 22:32 
Questionproblem in sending mail Pin
Rajeesrivastava26-Oct-08 20:30
Rajeesrivastava26-Oct-08 20:30 
AnswerRe: problem in sending mail Pin
Kannan Ar26-Oct-08 21:12
professionalKannan Ar26-Oct-08 21:12 
AnswerRe: problem in sending mail Pin
Abhijit Jana26-Oct-08 21:15
professionalAbhijit Jana26-Oct-08 21:15 
QuestionCalender Control Pin
raghvendrapanda26-Oct-08 20:09
raghvendrapanda26-Oct-08 20:09 
Questionhow to Get VAlues back from Generics? Pin
mr_muskurahat26-Oct-08 20:09
mr_muskurahat26-Oct-08 20:09 
QuestionHow i Can add Css menu to master page ? Pin
Ahmed R El Bohoty26-Oct-08 11:05
Ahmed R El Bohoty26-Oct-08 11:05 
AnswerRe: How i Can add Css menu to master page ? Pin
AlexeiXX326-Oct-08 17:26
AlexeiXX326-Oct-08 17:26 
GeneralRe: How i Can add Css menu to master page ? Pin
Ahmed R El Bohoty27-Oct-08 2:36
Ahmed R El Bohoty27-Oct-08 2:36 
GeneralRe: How i Can add Css menu to master page ? Pin
AlexeiXX327-Oct-08 7:29
AlexeiXX327-Oct-08 7:29 
GeneralRe: How i Can add Css menu to master page ? Pin
Ahmed R El Bohoty27-Oct-08 12:50
Ahmed R El Bohoty27-Oct-08 12:50 
QuestionDynamic tags in VS 2003 Pin
slSoftware26-Oct-08 4:08
slSoftware26-Oct-08 4:08 
Questionhow to measure fileupload control speed? Pin
zumty26-Oct-08 1:54
zumty26-Oct-08 1:54 
AnswerRe: how to measure fileupload control speed? Pin
Vasudevan Deepak Kumar26-Oct-08 10:20
Vasudevan Deepak Kumar26-Oct-08 10:20 
GeneralRe: how to measure fileupload control speed? Pin
zumty27-Oct-08 0:12
zumty27-Oct-08 0:12 
Question.NET 3.5 web.config Pin
Brendan Vogt25-Oct-08 23:47
Brendan Vogt25-Oct-08 23:47 
AnswerRe: .NET 3.5 web.config Pin
Shyam Bharath27-Oct-08 1:12
Shyam Bharath27-Oct-08 1:12 

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.