Click here to Skip to main content
15,910,234 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Singleton Pattern Pin
Pranav Thakur9-May-08 5:43
Pranav Thakur9-May-08 5:43 
GeneralRe: Singleton Pattern Pin
CodingYoshi9-May-08 12:02
CodingYoshi9-May-08 12:02 
QuestionAsp:HyperLink Pin
danasegaranea9-May-08 3:39
danasegaranea9-May-08 3:39 
AnswerRe: Asp:HyperLink Pin
Sylvester george9-May-08 3:49
Sylvester george9-May-08 3:49 
GeneralRe: Asp:HyperLink Pin
danasegaranea9-May-08 3:56
danasegaranea9-May-08 3:56 
GeneralRe: Asp:HyperLink Pin
Sylvester george9-May-08 4:02
Sylvester george9-May-08 4:02 
GeneralRe: Asp:HyperLink Pin
danasegaranea9-May-08 4:18
danasegaranea9-May-08 4:18 
QuestionError in Mailing Pin
Krazy Programmer9-May-08 3:23
Krazy Programmer9-May-08 3:23 
Hi friends

I am able to send mail to the id of same domain but not to other....

this is the code and below of the code is error


System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.From = new MailAddress(frmEmail);
message.To.Add(new MailAddress(txtEmailAddress.Text));
message.Subject = " From "+ Label1.Text + " Your Booking Information " ;
message.Body = booking_body;
SmtpClient client = new SmtpClient();
client.Host = hostname;
client.UseDefaultCredentials = false;
System.Net.NetworkCredential auth = new System.Net.NetworkCredential(user_name,password);
client.Credentials = auth;

client.Send(message);

ERROR:
Syntax error, command unrecognized. The server response was: mr.sindhutiwari@yahoo.com relaying prohibited. You should authenticate first


please tell me where i am going wrong

If You win You need not Explain............
But If You Loose You Should not be there to Explain......

AnswerRe: Error in Mailing Pin
Sylvester george9-May-08 3:54
Sylvester george9-May-08 3:54 
AnswerRe: Error in Mailing Pin
eyeseetee9-May-08 3:58
eyeseetee9-May-08 3:58 
GeneralRe: Error in Mailing Pin
Krazy Programmer9-May-08 7:00
Krazy Programmer9-May-08 7:00 
QuestionA socket operation was attempted to an unreachable host Pin
eyeseetee9-May-08 3:17
eyeseetee9-May-08 3:17 
AnswerRe: A socket operation was attempted to an unreachable host Pin
Sylvester george9-May-08 3:57
Sylvester george9-May-08 3:57 
GeneralRe: A socket operation was attempted to an unreachable host Pin
eyeseetee9-May-08 3:59
eyeseetee9-May-08 3:59 
GeneralRe: A socket operation was attempted to an unreachable host Pin
Sylvester george9-May-08 4:03
Sylvester george9-May-08 4:03 
Questionfacing problem when pressing back button from browser Pin
shraddha19049-May-08 2:32
shraddha19049-May-08 2:32 
AnswerRe: facing problem when pressing back button from browser Pin
eyeseetee9-May-08 3:19
eyeseetee9-May-08 3:19 
QuestionAutoEventWireUp Pin
Pankaj Garg9-May-08 2:22
Pankaj Garg9-May-08 2:22 
Questionmessage box with or without the ajax Pin
Pankaj Garg9-May-08 1:53
Pankaj Garg9-May-08 1:53 
AnswerRe: message box with or without the ajax Pin
eyeseetee9-May-08 2:15
eyeseetee9-May-08 2:15 
QuestionRe: message box with or without the ajax Pin
Pankaj Garg9-May-08 2:31
Pankaj Garg9-May-08 2:31 
AnswerRe: message box with or without the ajax Pin
eyeseetee9-May-08 3:09
eyeseetee9-May-08 3:09 
Questiondynamically add menu in microsoft dynamic CRM 4.0 in asp.net Pin
Piyush Vardhan Singh9-May-08 1:27
Piyush Vardhan Singh9-May-08 1:27 
Questionhow do I hide or encrypt source code asp.net Pin
indy9-May-08 1:17
indy9-May-08 1:17 
AnswerRe: how do I hide or encrypt source code asp.net Pin
eyeseetee9-May-08 2:13
eyeseetee9-May-08 2:13 

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.